Delete blank character

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I detect a blank (space) character as the first character in the field?
 
How do I detect a blank (space) character as the first character in the field?

1) =IIF(Left([FieldName],1) = " ","It's a space","It's NOT a space")
or...
2) =IIf(Asc([FieldName])=32,"It's a space","It's NOT a space")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top