Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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!
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)
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.
try like this
sum({<Area={"*"}-{'Area-not-available'}>}Sales)
Or this? If you have more than limit for Area
Sum({<Area ={'EMEA', 'APAC/LATM'} >} Sales)