Lougee Posted May 2, 2013 Posted May 2, 2013 SSN field formatted to automatically insert hyphens in the correct places -- xxx-xx-xxxx -- so I don't have to stop twice in every entry to find that darned hyphen key. Works flawlessly. However, when someone else entered ID data, she typed in the hyphens so I have some records that, when formatted, look like xxx--x-xxxx. (The calculation is: Left (SSN; 3) & "-" & middle (SSN; 4; 2) & "-" & right (SSN; 4).) Is there someway I can see the original -- unformatted, just numbers -- SSN that I typed in?
Raybaudi Posted May 2, 2013 Posted May 2, 2013 You can change the calculation to take account of the user who writes the dashes. Try: Let( d = Filter ( SSN ; 1234567890 ) ; Left ( d ; 3 ) & "-" & Middle ( d ; 4 ; 2 ) & "-" & Right ( d ; 4 ) )You can use the same Filter( ) function to obtain unformatted SSN
Lougee Posted May 2, 2013 Author Posted May 2, 2013 I knew I could rewrite the calculation to account for the hyphen and prevent future problems. I did not realize that would 'reverse engineer' the incorrectly formatted records. So simple. Thank you.
Rick Whitelaw Posted May 3, 2013 Posted May 3, 2013 I had always thought the proper format for SSN was xxx xx xxxx. Without the hyphens. In Canada S.I.N. format is xxx xxx xxx with no hyphens. Does the government require hyphens on tax forms etc in the US?
Lee Smith Posted May 3, 2013 Posted May 3, 2013 TurboTax put the hyphens in my 1040 as I entered the different parts into the work sheet.
Recommended Posts
This topic is 4280 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