Randy:
I have the same issue mentioned by wizavi in his July 2020 post. For some reason, some of the transactions downloaded from Wells Fargo are upper case and some are lower. When I imported them , my AutoCat rules didn’t process.
Your post back to Wizavi in July 2020 says that the Contains/Starts With/Equals filter are case INSENSITIVE. Does this only apply to the Advanced AutoCat feature? if so, I missed that.
Also, regarding the use of Regex …
Another person in the Forum suggested using Regex by adding a column to AutoCat, “Description Regex.”
I’ve tested this in two ways:
Assuming this is the value in A2 being searched:
PURCHASE RETURN AUTHORIZED ON 08/29 PAYPAL *DOLCE VITA 718-308-2314 NY
Method 1. Including the match value as a literal string in the Regex Expression
Formula: =regexmatch(a3,“(?i)(?:Paypal)”) which finds Paypal regardless of case but it requires adding the match string as a literal for every rule. I’d like to avoid this if possible.
Method 2. Referencing the Match Value from another cell - C9 in the example below. This evaluates as TRUE which is correct but, unfortunately, it also evaluates as True if C$9 is empty.
Formula: =regexmatch(A9,“(?i)(?:”& c$9 & “)”) where cell c$9 contains “dolce | vita | Paypal” (without quotes)
Can you tell me how to change the expression so it evaluates as FALSE if the reference cell is empty?
I suppose the real question is this. What is the best way to use AutoCat if the values in the Description field of the csv import file are a mixture of upper and lower case strings?
Thank for any all help.
ScottC
Saluda, NC