Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Use Uppercase() in a calculated dimension in a Pivot-Table

Is there a method to obtain the uppercase of some field in a calculated dimension in a pivot table ? I would like more precisely to use uppercase() in a match + pick:

=pick(match(UPPERCASE(Month), "JAN", "FEB"), "1", "2")

Is there a way ? Is the above possible?

Thanks in advance

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Use single quotes rather than double, and upper()  like:

=pick(match(UPPER(Month), 'JAN', 'FEB'), '1', '2')

View solution in original post

2 Replies
tresesco
MVP
MVP

Use single quotes rather than double, and upper()  like:

=pick(match(UPPER(Month), 'JAN', 'FEB'), '1', '2')

Anonymous
Not applicable
Author

Hi,

In qlikview we have Upper() function not Uppercase() function and I would say this is more precise way to use Upper() function in your scenario.