I am using MS Access 2003 (I'm on an old pc).
I have a report that takes data from a a table called 'tbl_AirlineCro ssSellingList'
This data is then filtered down based on a selection made in a combo box 'cmb_CrossSelli ngList'.
When the user clicks a button to preview the report the data does not change based on the selection?
the query SQL code reads as follows;
Please can someone tell me how I can make this work?
I have a report that takes data from a a table called 'tbl_AirlineCro ssSellingList'
This data is then filtered down based on a selection made in a combo box 'cmb_CrossSelli ngList'.
When the user clicks a button to preview the report the data does not change based on the selection?
the query SQL code reads as follows;
Code:
SELECT tbl_AirlineXSL.Airline, tbl_AirlineXSL.[Airport Requesting], tbl_AirlineXSL.[Date Requested] FROM tbl_AirlineXSL WHERE (((tbl_AirlineXSL.Airline)=[Forms]![frm_Splashscreen]![cmb_CrossSellingList].[BoundColumn]));
Comment