As both John and Scott have pointed out you should not have a TechName column in FSRData as that introduces redundancy, and means the table is not normalized to Third Normal Form, which requires all non-key columns to be determined solely by the table's
primary key. It is consequently open to the risk of update anomalies.
So, having deleted the TechName column from FSRData, why not give your users the opportunity to either select the ID or the name? You just need to set up two combo boxes on the form, with TechID as the ControlSource property of each.
To allow selection by TechID the RowSource property of the first combo box would be:
SELECT TechID FROM Table_TechnicianDropDown ORDER BY TechID;
It's other properties can be left as the defaults.
To allow selection by name the second combo box's RowSource property would be:
SELECT TechID, TechName FROM Table_TechnicianDropDown ORDER BY TechName;
The properties of this combo box would be:
BoundColumn: 1
ColumnCount: 2
ColumnWidths: 0cm
If your units of measurement are imperial rather than metric Access will automatically convert the unit of the last one to inches. The important thing is that the dimension is zero to hide the first column.
Whether the user selects a TechID or a TechName the other combo box will automatically show the correct value.
One caveat: personal names can legitimately be duplicated, so if two or more technicians have the same name (not as unlikely as you might think - I worked with two Maggie Taylors) there will be two or more identical rows in the second combo box's list. Ideally
some other value(s) should be shown in another column or columns in the list to allow them to be differentiated. You'll find an example in NotOnList.zip in my public databases folder at:
https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
If you have difficulty opening the link copy its text (NB, not the link location) and paste it into your browser's address bar.
In this little demo file the opening form differentiates between contacts of the same name by including their address data in the combo box's list.