Hi my first post - hope this makes sense.
I need to setup a data validation routine so users can enter ss # in the the standard format (including #s starting with 0) ie
xxx-xx-xxxx
I had setup the spreadsheet using the custom format but the users started entering values without the 'dashes' which messes up the analysis. Searched the net and found this validation but this one is without the dash'-'
=AND(LEN(A1)=9,ISNUMBER(--A1))
I need to setup a data validation routine so users can enter ss # in the the standard format (including #s starting with 0) ie
xxx-xx-xxxx
I had setup the spreadsheet using the custom format but the users started entering values without the 'dashes' which messes up the analysis. Searched the net and found this validation but this one is without the dash'-'
=AND(LEN(A1)=9,ISNUMBER(--A1))