I know of no way to change field names in a query on the fly. Where would you
get the run dates anyway?
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
The run dates are already in my source table, when i run the query, i have a
parameter set up to ask for the 2 dates.
> I know of no way to change field names in a query on the fly. Where would you
> get the run dates anyway?
[quoted text clipped - 24 lines]
> > THANKS,
> > susan
John Spencer - 30 May 2008 17:41 GMT
Depending on the query (you didn't post it), you should be able to add the
parameters to the SELECT clause and see them as field results.
SELECT [Enter End Date], RunDate
FROM SomeTable
WHERE RunDate = [Enter End Date]
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
> The run dates are already in my source table, when i run the query, i have a
> parameter set up to ask for the 2 dates.
[quoted text clipped - 27 lines]
>>> THANKS,
>>> susan