up vote 5 down vote favorite
2
share [g+] share [fb]

TableView

CredTypeID is a number the CredType is the type of Credential

I need the query to display the Credential in a drop down list so I can change the credential by selecting a new one.

Currently I have to know the CredTypeID number to change the Credential.

I just want to select it from a drop down list.

Currently to change Betty Smith to an RN I have to type “3” in the CredTypeID. I just want to be able to select “RN” from a drop down list.

Here is the table layout and sql view (from access)

TableLayout

SELECT Lawson_Employees.LawsonID, Lawson_Employees.LastName, 
       Lawson_Employees.FirstName, Lawson_DeptInfo.DisplayName, 
       Lawson_Employees.CredTypeID, tblCredTypes.CredType 
  FROM (Lawson_Employees 
       INNER JOIN Lawson_DeptInfo 
          ON Lawson_Employees.AccCode = Lawson_DeptInfo.AccCode) 
       INNER JOIN tblCredTypes 
          ON Lawson_Employees.CredTypeID = tblCredTypes.CredTypeID;
link|improve this question
3  
I cant see those screen shots they are so small. – JonH Oct 1 '09 at 15:21
lol yeah I finally figured out how to re-sized the embedded image from Picasa. They don't make it easy to embed images, they giving you all the HTML to go with it of course that probably does make it easier for some people, just not when you are posting here – Larry Oct 1 '09 at 15:25
1  
Probably should have mentioned that the tables prefixed with "Lawson_" are actually links to tables on a SQL Server 2005 database. Not sure if it will make a difference or not... but I'm on vacation and not supposed to be working on this. – AnonJr Oct 1 '09 at 19:32
feedback

2 Answers

up vote 4 down vote accepted

This should do the trick, will work in datasheet view and auto-set up the field as the type of dropdown you want if you add the field to any new forms.

  1. Open the Lawson_Employees table in design view.
  2. Click on the CredType field and at the bottom of the screen switch to the "lookup" tab
  3. Change DisplayControl to "Combobox
  4. Change the Rowsource to be the following query:

    SELECT CREDTYPEID,CREDTYPE FROM tblCredTypes ORDER BY CREDTYPE ASC

  5. Set columncount=2

  6. Set Columnwidths to "0;"
  7. Set LimitToList = Yes
  8. Make sure BoundColumn is set to 1

If you have already added the Lawson_Employees.CredTypeID field to a form, delete it and then re-add it to get it to automatically set it up so you can select by the friendly label instead of the id.

link|improve this answer
Very nice. For those of us still using Access 2003, a rigth click on the column name gives the "Look up column..." option. – mavnn Oct 1 '09 at 15:41
I didn't know that was possible in a linked table, but that's mostly because nobody in his right mind would define a lookup in a table. Lookups are USER INTERFACE objects. Tables are not UI objects. Create a query or a form and put the dropdown there. It also causes bad problems because the UI doesn't align with the actual stored data. On the evils of lookup fields: mvps.org/access/lookupfields.htm – David-W-Fenton Oct 2 '09 at 2:15
@David good info, and this is a short term solution. We started with Numerous data sources. Note I didn't say databases because some people were/are using spreadsheets to keep up with the information. I don't have a complete UI yet and won't until we have migrated completely to sql server and will have a completely web interface then. In the short term to keep things working and keep up with the data I am using access as a front end for the tables that are now on sql. Looking back we really should have said to hell with the legacy data and started from zero. – Larry Oct 2 '09 at 13:18
Even if we started from zero we would still have to interface with our HR system which is a poorly designed system to say the least. – Larry Oct 2 '09 at 13:19
Accepted answer, this did work and had very detailed instructions. – Larry Oct 2 '09 at 13:22
show 3 more comments
feedback

If you are entering the data via a form, then you create a drop down list that uses two columns for it's value list (CredTypeID and CredType) and then set the width of the first column to zero. Hey presto, a field that access treats as having a value of CredTypeID, but displays with CredType.

I don't think you can use this trick directly in the query results themselves, though.

link|improve this answer
Actually you can use the same trick directly in the query results if you set the columns up in the table design. Another benefit of doing this is that any new forms the field is added to will automatically be created with the drop-down. – JohnFx Oct 1 '09 at 15:32
+1 as it is correct, but the accepted answer had more detailed instructions. Thanks for your help – Larry Oct 2 '09 at 13:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.