This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
We have extended our Early Bird Tickets for Inspire 2023! Discounted pricing goes until February 24th. Save your spot!
Hi,
I am trying to filter the data by CCC_SPEC_CD "305" and Categories 1, 2, 3 & Blanks only as per the below filter:
[CCC_SPEC_CD] = "305" OR
[URGENCY_CATEGORY] = "1" OR
[URGENCY_CATEGORY] = "2" OR
[URGENCY_CATEGORY] = "3" OR
[URGENCY_CATEGORY] = "Blank"
But the output is including other CCCs that I don't want and also other categories that I don't want.
Any assistance will be helpful. thank you.
Solved! Go to Solution.
Hi
Please check the data type which needs to be String and use the following filter condition
([URGENCY_CATEGORY]="1" OR
[URGENCY_CATEGORY]="2" OR
[URGENCY_CATEGORY]="3" OR
[URGENCY_CATEGORY]="4") AND
[CCC_SPEC_CD]="305"
Thank you, its working now. Cheers