I am looking for a formula that will allow me to count text less than 2 and exclude blank spacing. So if it is one letter it would be wrong and if its one letter with a space it will still be counted as wrong. 2 Characters is the min. Please help
=AND(ISTEXT(A1),IF(ISNUMBER(SEARCH(" ",A1)),LEN(SUBSTITUTE(A1," ",""))>1),LEN(A1)>1)
Your requirement statement is a little fuzzy on details. Are you looking only for letters? What about just a letter and a digit? What about just two digits? What about punctuation marks only (?? for example)? Can you tighten up your description just a little bit more for us?I am looking for a formula that will allow me to count text less than 2 and exclude blank spacing. So if it is one letter it would be wrong and if its one letter with a space it will still be counted as wrong. 2 Characters is the min. Please help
Should we raise an error if a there are, say, 2 letters plus a digit or should the non-letters simply be ignored?I am only looking for letters only
No numbers or punctuation marks
Just anything less than 2 letters and if a there is 1 letter and a space is what I am looking to capture
Assuming the latter, give this formula a try...Should we raise an error if a there are, say, 2 letters plus a digit or should the non-letters simply be ignored?
My formula works as a Conditional Formatting formula as is provided cell A1 is the active cell for the selection you are applying the Conditional Formatting to (if not, update the various A1 cells references maintaining the $ sign where shown).This is a very indepth formula, it works very well. Is there a way to possible apply this to a conditional format in the near future.
I think this formula would definitly mitigate several errors