bkjohn2016
New Member
- Joined
- Sep 9, 2016
- Messages
- 38
Hi,
I work as an accountant and am attempting to use financial data to create rolling balances. I have two Fact tables connected with various Dim tables. The first Fact table contains trial balance data at a given point in time i.e. end of month. The second table contains transaction data produced on a daily basis. I would like to add the transaction data to the previous year balance to produce a rolling balance.
I've created a measure to summarize the year to date transaction data:
TransactionSummary:=CALCULATE(SUM([NetBalanceChange]))
And a measure to calculate the previous years balance:
Beginning Balance:=CLOSINGBALANCEYEAR(SUM(FactTrialBalances[CURRENT BALANCE]),DimDate[Date])
Logic tells me that if I add the two I should get the results I'm looking for but it doesn't seem to work:
Rolling Balances:=[Beginning Balance]+[TransactionSummary]
I'm a bit new to the powerpivot environment and would appreciate any help you can offer. I'm sure it's just a filtering issue I've missed.
Thanks
I work as an accountant and am attempting to use financial data to create rolling balances. I have two Fact tables connected with various Dim tables. The first Fact table contains trial balance data at a given point in time i.e. end of month. The second table contains transaction data produced on a daily basis. I would like to add the transaction data to the previous year balance to produce a rolling balance.
I've created a measure to summarize the year to date transaction data:
TransactionSummary:=CALCULATE(SUM([NetBalanceChange]))
And a measure to calculate the previous years balance:
Beginning Balance:=CLOSINGBALANCEYEAR(SUM(FactTrialBalances[CURRENT BALANCE]),DimDate[Date])
Logic tells me that if I add the two I should get the results I'm looking for but it doesn't seem to work:
Rolling Balances:=[Beginning Balance]+[TransactionSummary]
I'm a bit new to the powerpivot environment and would appreciate any help you can offer. I'm sure it's just a filtering issue I've missed.
Thanks