Hi - this sounds like it should be simple but I can't make it work:
I have 2 tables, joined in a query to populate a form.
TblPOI has Userid, POINAME, EMAIL (e.g. JMS, John, myemailaddress)
tblINCIDENTS has among other fields POI, IC (POI links to UserID). I want IC to update to POINAME when I select the userID in a combobox.
FormINCIDENTS has POI as a combobox which displays and allows me to select the Userid and populate the table with POI. For the source I used: SELECT Userid, POI, POIName FROM tblPOI; I bound column 1.
I created a text box (named "ICbox") on the form to display the POINAME after selecting POI, but it doesn't appear.
I tried using AFTERUPDATE event and typing me.ICbox.value=me.POI.COLUMN(3), but it a) doesn't show on the form and b) doesn't update tblINCIDENTS
Any help appreciated!
I have 2 tables, joined in a query to populate a form.
TblPOI has Userid, POINAME, EMAIL (e.g. JMS, John, myemailaddress)
tblINCIDENTS has among other fields POI, IC (POI links to UserID). I want IC to update to POINAME when I select the userID in a combobox.
FormINCIDENTS has POI as a combobox which displays and allows me to select the Userid and populate the table with POI. For the source I used: SELECT Userid, POI, POIName FROM tblPOI; I bound column 1.
I created a text box (named "ICbox") on the form to display the POINAME after selecting POI, but it doesn't appear.
I tried using AFTERUPDATE event and typing me.ICbox.value=me.POI.COLUMN(3), but it a) doesn't show on the form and b) doesn't update tblINCIDENTS
Any help appreciated!