Filling a title in a report from another form

jtice01

New member
Local time
Today, 12:28
Joined
Nov 19, 2015
Messages
7
Hi all,
I was hoping I could get some help with my problem.

I'm sure it simple but I keep getting errors.

I'm trying to add a title to a report.
The title comes from a combo box on a form.

How can I take the selection from that combo box and pass it to the title?

Thanks
 
A textbox on the report? Simply:

=Forms!FormName.ComboboxName
 
A textbox on the report? Simply:

=Forms!FormName.ComboboxName

Yes, I've used this method before. The problem is that it calls the autonumber of the combo box selection, not the text.
Nevermind... I figured it out. I just needed to add a column specification.
=forms![formname]![comboboxname.column(1)]
Thanks.
 
Last edited:

Users who are viewing this thread

Back
Top Bottom