E
Elizabeth
I have a form I'll call "Select Sources" in which I want
to include a ComboBox called Source. (The selection the
user makes will determine the source to include in a
report.) I want the ComboBox to display only the Sources
that have been added to the MainTable when the user adds
records.
In the ComboBox, it displays the SourceID stored in
MainTable. However, this isn't what I want. How can I get
my ComboBox to display the text associated with the
SourceID?
TableName: MainTable
Field: SourceID (Data Type = Number)
RowSource: SELECT Sources.SourceID, Sources.Source FROM
Sources;
In the MainTable, the SourceID is stored in the SourceID
field, but when you click on SourceID it shows you the
Source (text) - not the SourceID - which is as it should
be.
Table Name: Sources
Field: SourceID (Data Type = Autonumber)
Field: Source (Data Type = Text)
MainTable and Sources are joined on SourceID.
Thanks in advance,
Elizabeth
to include a ComboBox called Source. (The selection the
user makes will determine the source to include in a
report.) I want the ComboBox to display only the Sources
that have been added to the MainTable when the user adds
records.
In the ComboBox, it displays the SourceID stored in
MainTable. However, this isn't what I want. How can I get
my ComboBox to display the text associated with the
SourceID?
TableName: MainTable
Field: SourceID (Data Type = Number)
RowSource: SELECT Sources.SourceID, Sources.Source FROM
Sources;
In the MainTable, the SourceID is stored in the SourceID
field, but when you click on SourceID it shows you the
Source (text) - not the SourceID - which is as it should
be.
Table Name: Sources
Field: SourceID (Data Type = Autonumber)
Field: Source (Data Type = Text)
MainTable and Sources are joined on SourceID.
Thanks in advance,
Elizabeth