A QA macro must report rows where the value in column C does not match the pattern 'AA-####' (two letters, hyphen, four digits). Which VBA tool handles this?
-
A
InStr(cell.Value, '-')
-
B
cell.Value Like '[A-Z][A-Z]-####'
-
C
cell.Value = 'AA-####'
-
D
IsNumeric(Mid(cell.Value, 4, 4))