Hi All,
Is there any way in which if the cell contain any single letter (from a to z or A to Z) then in another cell i tag that as "Not Required" using formula.
example:
Column 1 Column 2
r Not Required
IIF(REGEXMATCH([Column 1], "[A-z]") = -1, "Not Required", "Required")
In a formula tool worked for me
You can just do,
IIF(REGEX_MATCH([Column 1], "[A-Z]"), "Not Required", "Required")
as it defaults to case insensitive. In fact if it were to add the icase=0 flag then [A-z] would be incorrect because it would include all the unicode characters between upper case A and lower case z which includes a few ascii characters and symbols like ', [, \, ], ^, _, and `
Hi @ed_hayter many thanks for the solution, ur formular working goog with single character, however can u pls provide a formula where it mark one as well as two characters Not Required. Thanks.