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

exclude some value from dimension

HI i have a chart with QVW name as a dimension,  which shows how manny user and session each QVW has,, but i want to exclude some QVW name from that chart,

like

i dont want Finance.qvw   and Home graph.qvw  in the chart

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

May be this:

= IF(Not Match(FieldName, 'Finance.qvw', 'Home Graph.qvw') , FieldName)

View solution in original post

5 Replies
sunny_talwar

May be this:

Replace(FieldName, '.qvw', '')

everest226
Creator III
Creator III
Author

hi sunny i am not trying to replace the field , i was trying not to include Finance.qvw   and Home graph.qvw  in the chart

vishsaggi
Champion III
Champion III

May be this:

= IF(Not Match(FieldName, 'Finance.qvw', 'Home Graph.qvw') , FieldName)

sunny_talwar

Misunderstood the requirement, but vishsaggi‌'s response should work for you

everest226
Creator III
Creator III
Author

Thanks stalwar1‌ you always been helpful