ike_barrett
New Member
- Joined
- Apr 2, 2019
- Messages
- 1
So I have database that has an employee table/sheet "Employees" with three columns...EmployeeID, FirstName, LastName. Most of the data only uses EmployeeID...but I don't want users to have to remember employee IDs when using it.
So, I use an ActiveX ComboBox to display the three columns and transmt the value to the linkedCell (in this case C3). The value shows correctly.
Then I try to show the names in D3 and E3, but keep getting #NA .
I used =INDEX(Employees,MATCH(C3,Employees[Employee_ID],0),2)
If I simply replace C3 with my employeeID number it works...also, if I change my employeeIDs to letters instead of numbers it works...but I can't do that.
I also tried substituting C3 with Indirect("C3") and that doesn't work (although it does work else where to display the EmployeeID).
Any direction you can provide would be great.
So, I use an ActiveX ComboBox to display the three columns and transmt the value to the linkedCell (in this case C3). The value shows correctly.
Then I try to show the names in D3 and E3, but keep getting #NA .
I used =INDEX(Employees,MATCH(C3,Employees[Employee_ID],0),2)
If I simply replace C3 with my employeeID number it works...also, if I change my employeeIDs to letters instead of numbers it works...but I can't do that.
I also tried substituting C3 with Indirect("C3") and that doesn't work (although it does work else where to display the EmployeeID).
Any direction you can provide would be great.