G Guest Sep 7, 2007 #1 I'm using Access 2003. Is there a way to search a SSN field for the last 4 characters of a social security number? Thanks,
I'm using Access 2003. Is there a way to search a SSN field for the last 4 characters of a social security number? Thanks,
G Guest Sep 7, 2007 #2 You can use the Right() function to return the specified number of characters from the right of a string. For your information, there is also a Left() function. Steve
You can use the Right() function to return the specified number of characters from the right of a string. For your information, there is also a Left() function. Steve
G Guest Sep 7, 2007 #3 You can use the Right() function to return the specified number of characters from the right of a string. For your information, there is also a Left() function. Steve
You can use the Right() function to return the specified number of characters from the right of a string. For your information, there is also a Left() function. Steve
J John W. Vinson Sep 7, 2007 #4 I'm using Access 2003. Is there a way to search a SSN field for the last 4 characters of a social security number? Thanks, Click to expand... Put a calculated field in a Query by typing LastFour: Right([SSN], 4) in a vacant Field cell, and put a criterion of [Enter last four digits of SSN:] on the criteria line under it. John W. Vinson [MVP]
I'm using Access 2003. Is there a way to search a SSN field for the last 4 characters of a social security number? Thanks, Click to expand... Put a calculated field in a Query by typing LastFour: Right([SSN], 4) in a vacant Field cell, and put a criterion of [Enter last four digits of SSN:] on the criteria line under it. John W. Vinson [MVP]