Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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