Skip to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Best way to deal with SSN

Featured Replies

I am working on a solution that requires the tracking of an applicant's social security number. On the surface this seems like a relatively easy task, however I'm running into a reporting issue in that some customers want full social security number displayed while others want a partial (xxx-xx-1234) and yet others want nothing dispayed.

The problem at hand is that the data the applicants are providing can be incomplete or full SSN's. Is it best for me to store the literal number that the applicant has provided and append the appropriate X's where appropriate, should I store a value of xxx-xx-xxx and then append the appropriate numbers as they are provided, or is there some other way to do this?

The problem at hand is that the data the applicants are providing can be incomplete or full SSN's. Is it best for me to store the literal number that the applicant has provided and append the appropriate X's where appropriate

Yes, this sounds like a good approach to me. To display the formatted SSN, you could either use a 2nd field that holds a calculated value, or use an auto-enter calculation that replaces the existing value.

should I store a value of xxx-xx-xxx and then append the appropriate numbers as they are provided, or is there some other way to do this?

You could, pre-populate the field with this value, but you don't have to.

Here are some functions that you will probably need:


Filter ( yourField ; "0123456789" ) // to get only the numbers from the users input

Right ( "xxxxxxxxx" & $usersNumericInput ; 9 ) // to get a string with 9 characters, and show the users input at the end of that string

Left ( $data ; 3 ) & "-" & Middle ( $data ; 4 ; 2 ) & "-" & Right ( $data ; 4 ) // to add the dashes to the 9 character string

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.