Click in the JOIN GROUP button in Home to follow our news and attend our events!
Hi All,
We have one column where more than 200 type of currency are populated but I want the data excluidng 6-7 currency what function can use, please help.
I was using !contains("USD" + "INR" + "GBP" + "abd" + "DEF") but this function is not woking.
Thanks,
Neeta
Solved! Go to Solution.
You have use filter tool with "doesn't contain" and syntax instead of !contains("USD" + "INR" + "GBP" + "abd" + "DEF") could be !Contains([column name],"USD") and !Contains([column name],"INR") and !Contains([column name],"GBP") and !Contains([column name],"GBP")
Use Filter tool :
Expression : [Input_field_name] NOT IN ('USD' , 'INR' , 'GBP' , 'abd' , 'DEF')
Thankyou Sangeeta & Kapil for your quick response
Its really helpful.
Additionally to the above you can also use 'Select Records' tool if these currency codes always appear at a particular record number. You can mention their respective record numbers (row numbers) in the Configuration options of the Select Records Tool to exclude them.