Reputation: 160
I am very new to access, so I assume that I am just doing something terribly simple wrong, but I am totally lost. I am making a form to sort data for a hospital that I am interning at, and while everything so far has been a breeze, when trying to make a combobox in a data entry form, I am unable to add the data I want into combobox (Procedure and Physician), although I can add the ID for whatever reason. I have posted screen shots of my query and of what happens when I try to add in the combobox, and I am more than willing to add additional information if need be.
Also, don't worry, I checked with my supervisor and she said that posting this online did not break HIPPA or any other legal rules as there is no patient information in the database (yet).
The same thing also happened in both of my physician comboboxes.
Upvotes: 0
Views: 49
Reputation: 1034
Is the ProcedureName field a Memo field? If so try changing the query to select it using CStr:
SELECT CStr(Procedures.ProcedureName) AS ProcedureName
Check if there are any Memo fields in your Physician table as well and try a similar approach.
Upvotes: 1