M Maritza Information ***** Local time Today, 15:20 Joined Nov 13, 2002 Messages 54 Feb 23, 2005 #1 How do I get a query to group by months in design view. I need to group by month x and then by field2. If not in Query Design view, what is the best way to write a SQL command for something like that. Thanks, Maritza
How do I get a query to group by months in design view. I need to group by month x and then by field2. If not in Query Design view, what is the best way to write a SQL command for something like that. Thanks, Maritza
FoFa Registered User. Local time Today, 09:20 Joined Jan 29, 2003 Messages 3,653 Feb 23, 2005 #2 you could create a calculated column with just the month CurrMonth: Month([MyDate]) Then use it in your group by
you could create a calculated column with just the month CurrMonth: Month([MyDate]) Then use it in your group by
M Maritza Information ***** Local time Today, 15:20 Joined Nov 13, 2002 Messages 54 Feb 24, 2005 #3 Thanks, It works!