Hi All,
I am getting below data using time series function to date in OBIEE. Here I providing level “ALL_YEARS” to get get my project to date data i.e from the beginning to current period.
Below data I am able to get.
Period Project Employee Original_Billing PROJTD_BILLING(Getting using time series)
2016-07 ABC 123 10 10
2016-08 ABC 123 NULL 10
2016-09 ABC 123 NULL 10
2016-10 ABC 123 20 30
2016-11 ABC 123 -5 25
2016-12 ABC 123 NULL 25
2017-01 ABC 123 NULL 25
2017-02 ABC 123 35 40
I want column Period_Billing(previous period PROJTD_BILLING – Current period PROJTD_BILLLING)
Period Project Employee Original_Billing PROJTD_BILLING Period_Billing(How to achieve??)
2016-07 ABC 123 10 10 10
2016-08 ABC 123 NULL 10 0
2016-09 ABC 123 NULL 10 0
2016-10 ABC 123 20 30 20
2016-11 ABC 123 -5 25 -5
2016-12 ABC 123 NULL 25 0
2017-01 ABC 123 NULL 25 0
2017-02 ABC 123 35 40 -15
Thanks In Advance!!!!