This is the statement:
=IF(FIND(",",G4,1),RIGHT(G4,LEN(G4)-SEARCH(",",G4,1))," ")
and this is the data:
10640 Queen St.
What's supposed to happen is that if a comma is found (TRUE), the result will give whatever is to the right of the comma. If no comma is found (FALSE), then the result shoud be a space. What's happening is if no comma is found, #VALUE is the result.
Help!!!
There's always a better way. The fun is trying to find it!
=IF(FIND(",",G4,1),RIGHT(G4,LEN(G4)-SEARCH(",",G4,1))," ")
and this is the data:
10640 Queen St.
What's supposed to happen is that if a comma is found (TRUE), the result will give whatever is to the right of the comma. If no comma is found (FALSE), then the result shoud be a space. What's happening is if no comma is found, #VALUE is the result.
Help!!!
There's always a better way. The fun is trying to find it!