Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
ramcena306
Creator II
Creator II

How to exclude a value from a field in Qliksense

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

Labels (5)
3 Replies
BrunPierre
Partner - Master
Partner - Master

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)

ramcena306
Creator II
Creator II
Author

Hello BrunPierre,

Thank you for the replay, i want to apply this as a sheet action, please tell me how to apply that.

BrunPierre
Partner - Master
Partner - Master