jeremy0028
Technical User
Thanks for all your support database is almost finished
last one work fine
I have a table & form called patient info and a table & form called charges
In the charges form i have a combo let say combo59
that looks up patient info table first name, last name, MI
and stores that information into the charges table under a field called patient
the problem is it only stores the last name
I tried using this in the combo59
SELECT [Patient Info].[Last Name]& ", " & [Patient Info].[First Name]& " " & [Patient Info].MI AS FullName FROM [Patient Info];
When i use this code it works fine store the information in the patient field in the charges table like this
last name, first name MI into one field
However when i generate a report the information doesnt come out
Example
When i use the report wizard i select patient from the charges table and from the patient info table i select address city state and zip
When i dont use the & " " & in the combo box the information comes out however only displays last name
?
?
Should i create first name, last name, mi in the charges table
If so when using the combo and select from patient info table last name, first name, mi to store those name in those fields how do i put all three in there in there places without putting in a single field.
last one work fine
I have a table & form called patient info and a table & form called charges
In the charges form i have a combo let say combo59
that looks up patient info table first name, last name, MI
and stores that information into the charges table under a field called patient
the problem is it only stores the last name
I tried using this in the combo59
SELECT [Patient Info].[Last Name]& ", " & [Patient Info].[First Name]& " " & [Patient Info].MI AS FullName FROM [Patient Info];
When i use this code it works fine store the information in the patient field in the charges table like this
last name, first name MI into one field
However when i generate a report the information doesnt come out
Example
When i use the report wizard i select patient from the charges table and from the patient info table i select address city state and zip
When i dont use the & " " & in the combo box the information comes out however only displays last name
?
?
Should i create first name, last name, mi in the charges table
If so when using the combo and select from patient info table last name, first name, mi to store those name in those fields how do i put all three in there in there places without putting in a single field.