I'm trying to create a view that will display a single day as well as last months data based on the date of the data. Rolling on each day.
Data is like this:
Date Current
5/15/2008 30
6/1/2008 100
6/2/2008 50
6/29/2008 25
6/30/2008 10
The view needs to be:
Date Current Rolling 1 Month
6/1/2008 100 30
6/2/2008 50 130
6/29/2008 25 150
6/30/2008 10 175
I think i need some kind of nested select?
Data is like this:
Date Current
5/15/2008 30
6/1/2008 100
6/2/2008 50
6/29/2008 25
6/30/2008 10
The view needs to be:
Date Current Rolling 1 Month
6/1/2008 100 30
6/2/2008 50 130
6/29/2008 25 150
6/30/2008 10 175
I think i need some kind of nested select?