I have a form in datasheet view, and one of the columns [Assignee] is a combobox. When I try to click on the [Assignee] header to filter, I run into some weird issues.
I want the user to be able to dropdown the Assignee field and select a FullName from tblUsers, but for that value to be set to the UserID field from tblUsers. So the end user would see the assignee’s name, even though the value is the assignee’s UserID.
So I’ve tried two different things:
Option 1:
Option 2:
Any idea what I can do to fix this?
I want the user to be able to dropdown the Assignee field and select a FullName from tblUsers, but for that value to be set to the UserID field from tblUsers. So the end user would see the assignee’s name, even though the value is the assignee’s UserID.
So I’ve tried two different things:
Option 1:
- Set the Assignee row source = “SELECT UserID, FullName FROM tblUsers;”
- Set the Assignee bound column = 1 (i.e., UserID)
- Set the column widths = 0”;2”
Option 2:
- Set the Assignee row source = “SELECT FullName, UserID FROM tblUsers;”
- Set the Assignee bound column = 2 (i.e., UserID)
- Set the column widths = 2”,0”
Any idea what I can do to fix this?