Thanks for reading this.
I have a task that requires me to calculate what level of alert our business is at each hour. The data is stored as follows:
Time Alert Level
1/1/11 5:00pm 3
1/1/11 8:00pm 4
1/7/11 7:00am 3
What I want to get out of this is:
Alert Level Hour
3 1/1/11 5pm
3 1/1/11 6pm
3 1/1/11 7pm
4 1/1/11 8pm
4 1/1/11 9pm
... .... (this would continue by hour until it hits the next change)
3 1/7/11 7am
Does anyone have any idea on how to accomplish this?
thanks!
I have a task that requires me to calculate what level of alert our business is at each hour. The data is stored as follows:
Time Alert Level
1/1/11 5:00pm 3
1/1/11 8:00pm 4
1/7/11 7:00am 3
What I want to get out of this is:
Alert Level Hour
3 1/1/11 5pm
3 1/1/11 6pm
3 1/1/11 7pm
4 1/1/11 8pm
4 1/1/11 9pm
... .... (this would continue by hour until it hits the next change)
3 1/7/11 7am
Does anyone have any idea on how to accomplish this?
thanks!