Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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
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
Thank you! This worked