R
RTimberlake
Is there a way to create a custom ID that will pull as "mmyy" from Date field?
Is there a way to create a custom ID that will pull as "mmyy" from Date field?
I need to be able to get the average scores for the
month. I tried to set up a query that would pull from a normal date feild but
that is proving ot be problamatic.
= DateSerial([Enter year:], [Enter month number:], 1) AND < DateSerial([Enter year:], [Enter month number:] + 1, 1)
John Vinson said:I need to be able to get the average scores for the
month. I tried to set up a query that would pull from a normal date feild but
that is proving ot be problamatic.
Well, let's solve the problem rather than creating a redundant,
inaccurate, hard to work with field!
If you want to select records for a given month, based on a date/time
field in the table, you can use a criterion
= DateSerial([Enter year:], [Enter month number:], 1) AND < DateSerial([Enter year:], [Enter month number:] + 1, 1)
and make it a totals query.
John W. Vinson[MVP]