Hey all,
I have two kinds of content in cells, either a business name or address:
'CHARLES R TUTWILER AND ASSOCIATES INC
'127 GRAND AVENUE
The address will contain a number whereas a business name shouldn't. Hence, I am only trying to target the businesses not addresses. So the only way I see to do this is to check if the cell contains a number at the second index position. If so, then it must be address. Problem is the ISTEXT function returns true even when I try to determine whether the second character is text, even though it isn't, as illustrated in attachment.
Thanks for response.
Maybe this:
=ISNUMBER(LOOKUP(99^99,SEARCH({0,1,2,3,4,5,6,7,8,9},A1)))
"Relax. What is mind? No matter. What is matter? Never mind!"
Thanks for response.
I ultimately got it working with this:
=REGEX.COMP(A2,"[1-9]")
The ' doesn't count as a character so you actually need to test character 1 I think. You can test whether thats a number like this
=ISNUMBER(LEFT(A1,1)+0)
Audere est facere
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks