I know there must be a simple way to do this, but I'm just not seeing it and I was wondering if anyone could help me.
I have a source field that will contain known values in any combination. Example: VANS = "VAN,53VN,VANL,VANV". Then I have a checkbox field that I'm attempting to match against the first, containing all the various types of vans (VanTypes). I need to get an exact match of one of the values without matching partials.
For instance, if VANS = "VAN,53VN, 48VN, REFR" and VanTypes has "REFR" checked, then I expect to get a match count. If VanTypes has "VANL" checked, then no match and no partial match to "VAN". The source (VANS) field is imported and can have any number of van types listed, usually from 1 to 4, but always using the "," delimiter if more than one.
I've tried different functions, but I either get a partial match (i.e. with PatternCount) or they don't see the delimiter and tries to match the entire string.
Thanks,