Grouping Reports by Field Lookup (Column 1) (1 Viewer)

tdefreest

Registered User.
Local time
Yesterday, 19:29
Joined
Dec 16, 2015
Messages
23
Hello,
I am seeking to group a report using a Field Lookup Table. The problem, is when I call the field in the header, "MarketLookup", the result is the ID associated with the field. For example, "2", instead of "Commercial".

Now, usually in VBA, I would use the expression: Me.MarketLookup.Column(1), which would return the column 1 instead of the ID.

Does anyone know how to apply these same principles to Reports?

Thanks,
 

tdefreest

Registered User.
Local time
Yesterday, 19:29
Joined
Dec 16, 2015
Messages
23
I tried implementing using a ComboBox and inserted the following SQL into the Row Source:

Code:
SELECT tblMarketsNameList.[MarketNameID], [tblMarketsNameList].[MarketName] FROM tblMarketsNameList ORDER BY [MarketName];

No luck, it still returns the ID field.
 

tdefreest

Registered User.
Local time
Yesterday, 19:29
Joined
Dec 16, 2015
Messages
23
Thanks Uncle Gizmo, I've never used combo boxes on reports before! It's working now.

I had to adjust the Column Count and the Column Widths.
 

Users who are viewing this thread

Top Bottom