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: 
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