I have a test like
LEFT('F13',2)='F1'
I want to change it from a left-side match to a test that supports wildcards
'F13'='F?3'
Excel doesn't support regex except in VBA code but i'd prefer this was done in a macro. I should point out that the actual test isn't a simple string, but cell references (this may be important, I'm not sure):
IF(LEFT($DATA.$A$2:$A$1501,LEN($B$3))=$B$3,...
The range actually evaluates to a single cell based on where the macro is called from. $B$3 is the pattern input by the user.