SimonPGreen
IS-IT--Management
Hi all,
I have a requirement to store and report on some financial data in the following format
intAppNo
dteAppDate
curAppValue
So a select * might result in
intAppNo dteAppDate curAppValue
1 30/1/2004 1000.00
2 26/2/2004 3000.00
3 20/3/2004 6000.00
The question I have is with respect to the data in curAppValue as this data represents a cumulative currency figure. When reporting I need to state the movement in each period i.e.
intAppNo dteAppDate curAppValue Movement
1 30/1/2004 1000.00 1000.00
2 26/2/2004 3000.00 2000.00
3 20/3/2004 6000.00 3000.00
How would I produce a report like this?
Is there a better way to achieve this?
Any help appreciated.
Regards,
Simon
I have a requirement to store and report on some financial data in the following format
intAppNo
dteAppDate
curAppValue
So a select * might result in
intAppNo dteAppDate curAppValue
1 30/1/2004 1000.00
2 26/2/2004 3000.00
3 20/3/2004 6000.00
The question I have is with respect to the data in curAppValue as this data represents a cumulative currency figure. When reporting I need to state the movement in each period i.e.
intAppNo dteAppDate curAppValue Movement
1 30/1/2004 1000.00 1000.00
2 26/2/2004 3000.00 2000.00
3 20/3/2004 6000.00 3000.00
How would I produce a report like this?
Is there a better way to achieve this?
Any help appreciated.
Regards,
Simon