is 3rd character in a cell a space?

  • Thread starter Thread starter Rick
  • Start date Start date
R

Rick

Looking for a way to determine if the 3rd character in a cell is a
space. (Dealing with mailing lists; trying to isolate values which
are first initial-period- "space" last name.
Thank you for your thoughts.
Rick
 
This will return either TRUE or FALSE:

=MID(A1,3,1)=CHAR(32)

CHAR(32) is the standard space character.
 
Back
Top