surfbum3000
Technical User
The table I am working with has the field SSN. I need to seperate the numbers to 3 seperate fields: SSN1, SSN2, SSN3. The data in the field SOC_SEC_NUM is without hyphens: 123456789. I tried
SSN1: Val(Left([SOC_SEC_NUM],3)) ; This works OK
SSN2: ?
SSN3: Val(Right([SOC_SEC_NUM],4)) ; This works OK
How do I get the 4th and 5th digits into one field?
SSN1: Val(Left([SOC_SEC_NUM],3)) ; This works OK
SSN2: ?
SSN3: Val(Right([SOC_SEC_NUM],4)) ; This works OK
How do I get the 4th and 5th digits into one field?