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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
venkat1
Creator II
Creator II

how to show selected values in dimensions

i have a pivot table,under field po number i have different values,but in table i want to show values only starting with 'A'.
 p.f.a

1 Solution

Accepted Solutions
tresesco
MVP
MVP

You can use calculated dimension, like: =If(Wildmatch([Po Number], 'A*'), [PO Number])

View solution in original post

2 Replies
tresesco
MVP
MVP

You can use calculated dimension, like: =If(Wildmatch([Po Number], 'A*'), [PO Number])

naddasandeep
Contributor III
Contributor III

use below expression

=if(WildMatch(Colname,'A*'), Colname)