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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Formating a string value

Hi,

Can anyone help me out in this,

I have one column, which has values like

Program
Application Manager
Applications
DFS200x
Accounts
ACCOUNTS


Here the Accounts and ACCOUNTS both are same, but due to the upper and lower case, qlik view considering as different and it shows as two different Program, I need to solve this.

Other values are correct,

Thanks in Advance,

Dhoulath

1 Reply
achiever_ajay
Contributor III
Contributor III

hi,

In edit script you can solve this problem during loading as..

Load

upper(Field1) as Field1,

....

...

.

This fetch you all your to Upper case.. which will solve your problem..