Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
engr_farhanqadr
Creator
Creator

Handling duplicate records

Dear Folks,

I have made a dashboard in which data has duplicate records like HBL-1643-BROWN and HBL-1643-Brown. In this scenerio I can not use upper or lower case nor capitalize. because I need the record in original shape in one time.

please guide.

Thanks,

Farhan

8 Replies
jyothish8807
Master II
Master II

So Farhan, what is your requirement? What are you trying to do?

Regards

KC

Best Regards,
KC
arulsettu
Master III
Master III

hi


Use the DISTINCT keyword in the LOAD


thanks

Not applicable

Hi,

Can you use Recno() for keeping each record as unique record.

Example:

load  *

**Your Fields***

RecNo()

From **location**

engr_farhanqadr
Creator
Creator
Author

I used this field as dimension and there is only one record which has corresponding KPI values other has zero value, I want to show the record only one time which has the values.

arulsettu
Master III
Master III

have u tried my suggestion?

engr_farhanqadr
Creator
Creator
Author

Murali,

this adds another field as RecNo() but did not eliminate the problem.

engr_farhanqadr
Creator
Creator
Author

Yes I tried but It loads both the records because one is in small letter and other is in caps.I need only one record.

alkesh_sharma
Creator III
Creator III

IN the Script use upper or Lower function

Load Distinct *,

Lower(Your Field with duplicate value) AS Name

From XXX

Hope this helps