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

How to remove duplicate dimensionsin pivot table one in upper case one in lower case

Hi,

Vizlib Pivot Table is showing duplicate values. I have to list out regions so it is showing : EAST and east in the table and same for other type of regions. The data however only has EAST. Why are duplicate values visible and that too in the lower case?

How can I remove them? Please help

Thanks

 

1 Solution

Accepted Solutions
rubenmarin

Hi values are case sensitive so 'east'<>'EAST', you can use the upper() funcion in script to convert all values to uppercase: LOAD Upper(FieldName) as FieldName

View solution in original post

2 Replies
rubenmarin

Hi values are case sensitive so 'east'<>'EAST', you can use the upper() funcion in script to convert all values to uppercase: LOAD Upper(FieldName) as FieldName

aditi_haldule
Contributor III
Contributor III
Author

Thank you! This worked