After looking around, I'm not 100% sure how I want to approach this.
I have a report which is essentially a identification form for our paperworks, based on a form in the database. Now, the form (in database) has two multi-select listbox, and I need to return all selections from each listboxes for a given client.
I'm given to understand that report cannot handle recordset which would prevent me from simply dropping it in the report. I've fiddled with unbound textbox, but not with much result as it usually creates the report to come blank.
In the table containing the selections from multiselect listboxes, it's something like
tblListboxSelection
ID
ClientID
SelectionID
tblListboxLookup
SelectionID
SelectionName
I then can make a query that will display
ClientID | SelectionName
But in report, I only need
***Top of page***
ClientID
Blah blah blah
_____________________________________________________________
SelectionName(0) SelectionName(1) SelectionName (2) |
SelectionName(3) SelectionName(4) SelectionName (5) |
---------------------------------------------------------------------
***Bottom of page***
How would I achieve this goal?
TIA.
I have a report which is essentially a identification form for our paperworks, based on a form in the database. Now, the form (in database) has two multi-select listbox, and I need to return all selections from each listboxes for a given client.
I'm given to understand that report cannot handle recordset which would prevent me from simply dropping it in the report. I've fiddled with unbound textbox, but not with much result as it usually creates the report to come blank.
In the table containing the selections from multiselect listboxes, it's something like
tblListboxSelection
ID
ClientID
SelectionID
tblListboxLookup
SelectionID
SelectionName
I then can make a query that will display
ClientID | SelectionName
But in report, I only need
***Top of page***
ClientID
Blah blah blah
_____________________________________________________________
SelectionName(0) SelectionName(1) SelectionName (2) |
SelectionName(3) SelectionName(4) SelectionName (5) |
---------------------------------------------------------------------
***Bottom of page***
How would I achieve this goal?
TIA.
Last edited: