M
msmuzila
for queries, what is the quarterly date format. I have month and year:
Month([SHIP_DATE])
Year([SHIP_DATE])
What is quarterly?
Month([SHIP_DATE])
Year([SHIP_DATE])
What is quarterly?
Rob Parker said:There is no standard "quarter" in Access. If you want one, you'll have to
write your own custom function to provide it - and that will also allow you
to define exactly what you want it to be.
Rob
for queries, what is the quarterly date format. I have month and year:
Month([SHIP_DATE])
Year([SHIP_DATE])
What is quarterly?
Michael H said:Here's an additional method:
DatePart("q", [SHIP_DATE])
-Michael
[email protected] said:Quarter: INT(Month([SHIP_DATE])/4)+1 works great, just had to put a >0
in the criteria
thanks
Quarter: INT(Month([SHIP_DATE])/4)+1 works great, just had to put a >0
in the criteria
thanks