I am trying to replicate my Access query but failed. My code should not contain "*33" and "XX*" and number should not be like "920*"
Solved! Go to Solution.
Hi @DiyaR
!(Contains([Code], "33") OR Contains([Code], "XX"))
AND
!Contains([Number], "920")
Try this out.
Cheers,
I actually tried this out.. however,I want code which ends with 33 and XX, Number starts with 920. Do i have to go with Regex??
Hi @DiyaR
Look into the StartsWith() for XX* and 920* and Endswith() functions for *33. preface both of these with Not to match your requirements
Dan
Since your Access query is using wildcards, try the Alteryx function REGEX_Match
thank you.. It worked 🙂