Do you have the patient's SSN in a separate field in the same table? Are the
two fields both text fields?
If so, you could run a query with the following:
Field: Client Acct Number
Criteria: LIKE "*" & [SSN] & "*"
SQL would look like:
SELECT *
FROM [Your Table]
WHERE [Client Account Number] LIKE "*" & [SSN] & "*"
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.