Hi
I have data in intervals by 3 months as in file attached where is shown 3month beginning date and ending date.I need to group by 6 month or one year period.
How is this possible?
Regards
To group by year you use the Year() function to get the year portion of your date field and group on that.
To group by 6 month intervals you would do something like:
Code:
Month([DateField]) < 7
... then group on this field. This will return True (i.e. -1) if the month is between Jan and Jul, and False if it isn't (i.e. 0). So -1 will come before 0.