TextBox reads entry as numeric instead of text

  • Thread starter John S. Ford, MD
  • Start date
J

John S. Ford, MD

I have table tblPatients with the following fields:
PatientIDNum (Autonumber)
PatientNameLast (Text)
PatientNameFirst (Text)
PatientMRNum (Text)

Field PatientMRNum is a 7 character medical record number each character of
which is incidently a numeric character.

I have a form with TextBox txtIDNum in which users the patient's MRNum
number. A command button on the form has the following code:

MsgBox "Is patient " & DLookup("PatientNameLast", "tblPatients",
"PatientMRNum=" & txtPatientMRNum) & " the patient whose chart you're
reviewing?"

Unfortunately, DLookup apparently thinks the contents of txtPatientMRNum are
integers because this code generates a data mismatch error. The code WILL
work perfectly if I change the datatype of PatientMRNum in tblPatients to
Number (but I don't want to do this).

Is there a way to get the txtMRNum to interpret the entry as a simple text
instead of a numeric?

Thanks in advance!

John
 
J

Jeff Boyce

Actually, since you're not telling DLookup that PatientMRNum is text, Access
thinks you mean it's a number, and then it chokes on it! That's why you're
getting the type mismatch.

If you want Access to treat what's in [txtPatientMRNum] as text, you'll need
to add quotes around it.


Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.
 
L

.Len B

Use this instead
MsgBox "Is patient " & DLookup("PatientNameLast", "tblPatients",
"PatientMRNum='" & txtPatientMRNum & "'") & " the patient whose
chart you are reviewing?"

--
Len
______________________________________________________
remove nothing for valid email address.
|I have table tblPatients with the following fields:
| PatientIDNum (Autonumber)
| PatientNameLast (Text)
| PatientNameFirst (Text)
| PatientMRNum (Text)
|
| Field PatientMRNum is a 7 character medical record number each
character of
| which is incidently a numeric character.
|
| I have a form with TextBox txtIDNum in which users the patient's MRNum
| number. A command button on the form has the following code:
|
| MsgBox "Is patient " & DLookup("PatientNameLast", "tblPatients",
| "PatientMRNum=" & txtPatientMRNum) & " the patient whose chart you're
| reviewing?"
|
| Unfortunately, DLookup apparently thinks the contents of
txtPatientMRNum are
| integers because this code generates a data mismatch error. The code
WILL
| work perfectly if I change the datatype of PatientMRNum in tblPatients
to
| Number (but I don't want to do this).
|
| Is there a way to get the txtMRNum to interpret the entry as a simple
text
| instead of a numeric?
|
| Thanks in advance!
|
| John
|
|
 
M

Mike Painter

I have table tblPatients with the following fields:
PatientIDNum (Autonumber)
PatientNameLast (Text)
PatientNameFirst (Text)
PatientMRNum (Text)

Field PatientMRNum is a 7 character medical record number each
character of which is incidently a numeric character.

Why use text then? 1OOI would be a valid "number" and be hard to spot on a
busy day?
Does a patient only have one MR Number?
Is this a unique number?
If yes, acombo box would be easierto use than a cmd button whhen looking up
patients by number.

If no then the MR number shold be in a related table, but looking up the
patient by number would essenially be the same.
I have a form with TextBox txtIDNum in which users the patient's MRNum
number. A command button on the form has the following code:

MsgBox "Is patient " & DLookup("PatientNameLast", "tblPatients",
"PatientMRNum=" & txtPatientMRNum) & " the patient whose chart you're
reviewing?"
"PatientMRNum=<single quote><double quote> & txtPatientMRNum) & <double
quote><single quote>
 

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.

Ask a Question

Top