G
Guest
I just got some help populating a text box in a form based on a combo box
selection. Now I need to format my report and I'm faced with the same
challenge again!
The following is the thread of help for the form text box. How can I make
this work in the report, too?
THANKS!!!
John,
As long as you're capturing the txtProfileID (bound to ProfileID) in
your combo,
there's no need to "capture" the Description... just display it.
An unbound text control with a ControlSource of...
= cbRDIngPKID.Column(1)
will display the Description from the combo.
Your combo query indicates the Desc is in the second column (combo cols
are numbered
0,1,2,3...)
so that would really be Coulmn(1)
selection. Now I need to format my report and I'm faced with the same
challenge again!
The following is the thread of help for the form text box. How can I make
this work in the report, too?
THANKS!!!
John,
As long as you're capturing the txtProfileID (bound to ProfileID) in
your combo,
there's no need to "capture" the Description... just display it.
An unbound text control with a ControlSource of...
= cbRDIngPKID.Column(1)
will display the Description from the combo.
Your combo query indicates the Desc is in the second column (combo cols
are numbered
0,1,2,3...)
so that would really be Coulmn(1)