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

Filter on Chart

Hi,

i have the followin table-chart. i would like only to have on the chart data for EMEA and APAC/LATM, excluding then the "Area-not-available".

How i can achieve this?

Thank you!

area.PNG

4 Replies
thomaslg_wq
Creator III
Creator III

Hi Antonio,

You have to declare it in your expression-measure using "set analsysis" - Set analysis and set expressions ‒ Qlik Sense

Assuming your measure is

sum(Sales)

Then it should be

sum({<Area-={'Area-not-available'}>}Sales)

vishsaggi
Champion III
Champion III

In your Dimension for Area write like?

= Aggr(If(Not Match(Area, 'Area-Not-Available'), Area), Area)

OR

= Aggr(Only({< Country -= {'EMEA'} >} Country), Country)

Then Check Supress Null Values for that dim.

avinashelite

try like this

sum({<Area={"*"}-{'Area-not-available'}>}Sales)

Anil_Babu_Samineni

Or this? If you have more than limit for Area

Sum({<Area ={'EMEA', 'APAC/LATM'} >} Sales)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful