You can't get much newer to Access than I am, so please bear with me.
I have two tables: tblLttrType that describes the type of letter an employee should get, and tblEmpSample in which I want to record survey data for which letter employees DID get, and whether it was on time. I'm trying to create a form that allows me to input the employee-specific data, but also shows me all the attributes of the letter that should have been sent. I'm stuck.
I thought I could put a combo-box on the form that would list the letter types in a 3-column drop-down. Once selected, the rest of the attribute fields would automatically populate so I could do a visual comparison against the letter they did get and mark off checkboxes. The problem is I don't know how to write the update query that would update the fields in the tblEmpSample with the attribute data from tblLttrType, and once written how to trigger it.
My second problem is the combo-box itself: no matter what I do, I can't get the field to show all 3 columns (they show in the drop-down list, but don't show once the selection is made). I have checked the Properties:Column width feature, even tried some VBA code I found in another thread ("Me!LttrTitle = Me![LttrTypeCombo].Column (1)", but I can't get it to work.
I know this should be simple, but like everything else with computers: if you don't know it, it's like banging your head against the wall. Any help you can give would be MUCH appreciated - this is for a project at work and I can't afford to waste time on it. If I can't get it to work, I'm going to have to track my results in an Excel spreadsheet!!
I have two tables: tblLttrType that describes the type of letter an employee should get, and tblEmpSample in which I want to record survey data for which letter employees DID get, and whether it was on time. I'm trying to create a form that allows me to input the employee-specific data, but also shows me all the attributes of the letter that should have been sent. I'm stuck.
I thought I could put a combo-box on the form that would list the letter types in a 3-column drop-down. Once selected, the rest of the attribute fields would automatically populate so I could do a visual comparison against the letter they did get and mark off checkboxes. The problem is I don't know how to write the update query that would update the fields in the tblEmpSample with the attribute data from tblLttrType, and once written how to trigger it.
My second problem is the combo-box itself: no matter what I do, I can't get the field to show all 3 columns (they show in the drop-down list, but don't show once the selection is made). I have checked the Properties:Column width feature, even tried some VBA code I found in another thread ("Me!LttrTitle = Me![LttrTypeCombo].Column (1)", but I can't get it to work.
I know this should be simple, but like everything else with computers: if you don't know it, it's like banging your head against the wall. Any help you can give would be MUCH appreciated - this is for a project at work and I can't afford to waste time on it. If I can't get it to work, I'm going to have to track my results in an Excel spreadsheet!!