Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I need your help. I have a straight chart with 3 columns and need to filter the data. EX
column 1 column 2 column 3
123456 abcd INDOOR
235466 bbcs OUTDOR
23564 abcd
I want to restrict the data just to be able to see the columns which contain the values INDOOR.
I want to restrict the data only in this specific chart not in the all appreciation.
Could you please suggest what I need to do?
Thank you in advance!
Is this you are expecting? If not, You must share exact output need?
Not sure
are you expecting to show straight table only 'INDOOR' right .
yes please
I tried to use IF and ONLY but I can't restrict the data....
try this
If there is any aggregation function (min, max, sum, count....) you are using in the chart, you can use set analysis to restrict the output like:
Sum({<FieldName={'INDOOR'}>} Sales)
Now, change it to your context.
you try like this also
with only() function
only({<[column 3]={'INDOOR'}>}[column 3])
=if(WildMatch(column 3,'INDOOR'),column 3)
if u want in your dimension.
and if u want it in value
Sum({<column 3,={'INDOOR'}>} value)
I tried your code but I have a problem with the nulls. How I can exclude nulls?