Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Everyone,
I have a field Order which has values like "LA","SA","RA","MA","GR"
i want to exclude "RA" when i enter one report.
Please help me on this..
Thanks,
Ram
Perhaps with Match() in the script as below
Load *,
IF(not Match(Order,'RA'),Order) as OrderDim //Use field as a dimension and suppress when its null
From DataTable;
or
In an expression like this
AggregationFunction({<Order={'*'}-{'RA'}>}YourMeasure)
Hello BrunPierre,
Thank you for the replay, i want to apply this as a sheet action, please tell me how to apply that.
Check here: Adding actions to sheets - Qlik Sense