Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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)