Newbies Dnewc1965 Posted January 14, 2002 Newbies Posted January 14, 2002 Is there a way to format a number field as a ss# without typing in the dashes
DykstrL Posted January 14, 2002 Posted January 14, 2002 You can do it with a calculation field: Middle(NumToText(Abs(TextToNum(SSNEnter)*10000000)), 1, 3) & "-" & Middle(NumToText(Abs(TextToNum(SSNEnter)*10000000)), 4, 2) & "-" & Middle(NumToText(Abs(TextToNum(SSNEnter)*10000000)), 6, 4) The result should be text
BobWeaver Posted January 14, 2002 Posted January 14, 2002 Also, you can locate the calculated field directly in front of the field in which you enter the data, and set the format to not allow entry to the field. Then they will appear to be a single field with only the formatted number displaying after you exit the field.
Recommended Posts
This topic is 8455 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now