Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
nareshthavidishetty
Creator III
Creator III

Duplicates

Hi,

We have a field called Seller.


We pull the seller detail from two systems like SQL DB and teradata.

After we load the information in qlikview we got duplicates due to case sensitive as below.

Seller       sales

4thmm     10

4Thmm    10

98ku         20

98KU        20

tte             30

TTe           30

when we do a sum(sales) as dimension as seller we got huge count due to duplicates.

How to remove the duplicated.

I have used the upper(Seller) ,but it removes the seller name start with numeric.


Thanks..

Labels (1)
10 Replies
Or
MVP
MVP

I can confirm that the Lower() approach suggested above works correctly, as does Upper() and Capitalize(). These have to be done in LOAD, not in your SELECT - otherwise your DBs may treat strings differently.

You do need to change the case of the seller, because AAA and aaa are NOT the same thing. You have to pick one and remove the other, and the way to do that is to use lower(), upper(), or capitalize().