Referencing a value from a Combo Box (1 Viewer)

LOUISBUHAGIAR54

Registered User.
Local time
Today, 15:48
Joined
Mar 14, 2010
Messages
157
Can someone please remind me how to reference a value on a combobox in one form from an object on another form.

I have put in =Forms![Company Name].Combo7 in the field object on the form and I have got the ID autonumber of the Company Name. So far so good. It worked.

When I put in =Forms![Company Name].Combo7.column1 to get the company name to appear in the field I got an error.

What is the correct entry that needs to be entered? many thanks.
 

pbaldy

Wino Moderator
Staff member
Local time
Today, 15:48
Joined
Aug 30, 2003
Messages
36,126
Close; try

=Forms![Company Name].Combo7.column(1)
 

LOUISBUHAGIAR54

Registered User.
Local time
Today, 15:48
Joined
Mar 14, 2010
Messages
157
I TRIED THAT AND IT WORKED FINE. tHANKS FOR YOUR ASSISTANCE
 

pbaldy

Wino Moderator
Staff member
Local time
Today, 15:48
Joined
Aug 30, 2003
Messages
36,126
No problem.
 

Users who are viewing this thread

Top Bottom