Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Account_Number
Date
Balance (€)
I would like to present on a chart/pivot the last balance per a selected period.
For example
For Year period- the last balance, per account, dating 31/12/2009..
For quarter period- the last balance, per account, dating 30/6/2009...
Selecting period type should be done through cyclic/drill down group, with preferably one expression.
Can this be done?
Thanks in advance,
Dror
Hi, Dror
1)
You must to have a calendar Table, where divide your date field.
for example,
LOAD DISTINCT
Date, Year(Date) as Year, Month(Date) as Month
RESIDENT TransTable;
then you can crate chart with expression as: sum({<Date = {"<=$(=max(Date))"}>} Balance).