M Costumes
Member
- Local time
- Yesterday, 17:33
- Joined
- Feb 9, 2021
- Messages
- 75
It's been a couple years since I've dabbled in building a database, and I'm working on one that's nearly complete except for this one issue I'm trying to solve. I'm trying to create a combo box on a form based on a table that displays two text fields (while hiding the PK, so a 3-column box) that when selected will open the matching record in the form.
The table the form is based on: tblReps
fields: RepID (autonumber), Season, ProductionCode
I have two separate joined tables listing the choices for Season (tblSesonYear: Season ID; SeasonYear) and ProductionCode (tblProductionCode: ProCodeID; ProductionCode). So in the Reps table, it's storing the numerical PK for Season (SeasonID) & ProductionCode (ProCodeID)--as it should.
Lots of googling, forum searches, and tutorial watching, and nothing I've tried so far will get the combo box to display text, just the numerical IDs. I'm wondering if it has something to do with trying to pull information from multiple tables? ETA: I've tried editing the RowSource in different configurations to try to point to the other table fields but no luck. Any suggestions on how I can get the text to display? I'm self-taught and I know I'm still bumbling around a bit, so I greatly appreciate any assistance! Many thanks!
The table the form is based on: tblReps
fields: RepID (autonumber), Season, ProductionCode
I have two separate joined tables listing the choices for Season (tblSesonYear: Season ID; SeasonYear) and ProductionCode (tblProductionCode: ProCodeID; ProductionCode). So in the Reps table, it's storing the numerical PK for Season (SeasonID) & ProductionCode (ProCodeID)--as it should.
Lots of googling, forum searches, and tutorial watching, and nothing I've tried so far will get the combo box to display text, just the numerical IDs. I'm wondering if it has something to do with trying to pull information from multiple tables? ETA: I've tried editing the RowSource in different configurations to try to point to the other table fields but no luck. Any suggestions on how I can get the text to display? I'm self-taught and I know I'm still bumbling around a bit, so I greatly appreciate any assistance! Many thanks!