I have a query that displays sales totals by market:
Market (Group by), Sales (Sum), Goal (Sum)
How can I modify the query to display the results in a manner that groups the markets? For example, if the query returns results for six markets, and three of them are NY, NJ, and PA; how can I consolidate those three into a "new" market - 'Northeast'? Therefore, my query would only return four results, with NY, NJ and PA rolling up into 'Northeast'.
Market (Group by), Sales (Sum), Goal (Sum)
How can I modify the query to display the results in a manner that groups the markets? For example, if the query returns results for six markets, and three of them are NY, NJ, and PA; how can I consolidate those three into a "new" market - 'Northeast'? Therefore, my query would only return four results, with NY, NJ and PA rolling up into 'Northeast'.