I have a list of months and quarters with sales data for each month and quarter. I need a total at the end...how do I sum but exclude records that are quarters?
My Data looks like this:
Company Month Sales
1 Jan 120
1 Feb 150
1 Mar 100
1 Q1 370
1 Apr 100
1 May 120
1 Jun 160
1 Q2 380
How can I sum up the month field for records that do not = Q1, Q2, Q3, Q4?
My Data looks like this:
Company Month Sales
1 Jan 120
1 Feb 150
1 Mar 100
1 Q1 370
1 Apr 100
1 May 120
1 Jun 160
1 Q2 380
How can I sum up the month field for records that do not = Q1, Q2, Q3, Q4?