I have an access table that holds parameters that I want to pass to a query....
Example:
TableParameters
Grp# / trackingStartDate / Payor
4 | 5/1/2010 | 1105
5 | 6/1/2010 | 335
7 | 4/30/2010 | 1
I would like to use the data in the TableParamters as the criteria for my query against the main table that holds payments....
So for example I want to say in the query for group 4 above only pull payments for Payor 1105 on or after 5/1/2010 etc....
Example:
TableParameters
Grp# / trackingStartDate / Payor
4 | 5/1/2010 | 1105
5 | 6/1/2010 | 335
7 | 4/30/2010 | 1
I would like to use the data in the TableParamters as the criteria for my query against the main table that holds payments....
So for example I want to say in the query for group 4 above only pull payments for Payor 1105 on or after 5/1/2010 etc....