Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
upaliwije
Creator II
Creator II

Restrict Dimension

Hi Friends

I have Pivot Table with following columns

Note    Amount

100     500

101     100

102     300

103     600

104     400

105     200

....      ....

I want to restrict display of dimension note  100,103,105. I want to do this without manually selecting from a list box. Pls help me to do it

1 Solution

Accepted Solutions
marwen_garwachi
Creator II
Creator II

Try in dimension : if(wildmatch(Note,100,103,105),Note)

View solution in original post

4 Replies
marwen_garwachi
Creator II
Creator II

Try in dimension : if(wildmatch(Note,100,103,105),Note)

PrashantSangle

Hi,

USe calculated Dimension,

Try like

if(wildmatch(Note,'100','103','105'),Note)

And select Supress Null Values in Dimension tab

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Anonymous
Not applicable

Hi ,

In the dimension use the below expression

=IF(Note <>'100' and Note <>'103' and Note <>'105',Note)

Please find the sample application in the attachments.....

upaliwije
Creator II
Creator II
Author

Thanks all