Hello,
My problem is to summarize
Year to Month Orders
For example I have a table like this :
[Date] ------------------------------------[Orders]
2007-01-31 00:00:00.000------------- 2
2007-02-28 00:00:00.000------------- 8
2007-03-31 00:00:00.000------------- 7
2007-04-30 00:00:00.000------------- 1
and my need is to sum each month's Orders to next one
to Look like this :
2007-01-31 00:00:00.000------------- 2
2007-02-28 00:00:00.000------------- 10
2007-03-31 00:00:00.000------------- 17
2007-04-30 00:00:00.000------------- 18
Thanks in advance .
My problem is to summarize
Year to Month Orders
For example I have a table like this :
[Date] ------------------------------------[Orders]
2007-01-31 00:00:00.000------------- 2
2007-02-28 00:00:00.000------------- 8
2007-03-31 00:00:00.000------------- 7
2007-04-30 00:00:00.000------------- 1
and my need is to sum each month's Orders to next one
to Look like this :
2007-01-31 00:00:00.000------------- 2
2007-02-28 00:00:00.000------------- 10
2007-03-31 00:00:00.000------------- 17
2007-04-30 00:00:00.000------------- 18
Thanks in advance .
Comment