I am trying to create a result set that will tell me how many open orders & the sum of revenue for those orders in inventory I had on the first of the month, for the last 13 months. An open order for inventory purposes are orders that were opened in the last 90 days and not been closed. So for each month, I need to know what the open order inventory count was @ that point in time. I have a table now with open date, close date, order #, and order revenue
For example, if I ran the report today (7/31), I would be returned:
Month #OpenOrders #SumRevenue
June 102 $120,000
May 122 $150,000
and so forth, the key being that the measurements are for that point in time
I may need a pivot table to summarize the info @ the end, but creating the result set with all of the info it what's giving me a fit
For example, if I ran the report today (7/31), I would be returned:
Month #OpenOrders #SumRevenue
June 102 $120,000
May 122 $150,000
and so forth, the key being that the measurements are for that point in time
I may need a pivot table to summarize the info @ the end, but creating the result set with all of the info it what's giving me a fit