What I want to do is present a form with a subset of the fields that contain
the description information and the month field which would be selected from
a combobox in a datasheet view. I can create a query using the value passed
from the list, but I can't get the month field to display correctly.
For example, if the fields in the initial query is:
select tbl1.ID, tbl1.Description, tbl1.[02/04] as QTY from tbl1
Using Me shows 02/04 as one of the form fields.
If i change the query to select tbl1.ID, tbl1.Description, tbl1.[02/05] as
QTY from tbl1 I get $NAME error for the month field because it is still
looking for the 02/04 field as the record source.
How can i change the query to select a different set of fields when the user
changes the month they want to view? The user also needs to be able to
update the information displayed in the list.
.