Forum Discussion
simonjervis
4 years agoNew Member
Trouble Joining Time Periods Between Fact Tables
I have 3 fact tables ('Budget', '3+9' and 'Actual') that each contain values by 'Period'. I have created a measure to calculate the cumulative sum of values by period in each table, and t...
- 4 years ago
simonjervis , Hope period is coming from a common table on axis as well as in measure formula
example using a date table
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected(date),date[date] <=max(date[Date])))
all cumulative measure should use common period table
amitchandak
4 years agoSuper User
simonjervis , Hope period is coming from a common table on axis as well as in measure formula
example using a date table
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected(date),date[date] <=max(date[Date])))
all cumulative measure should use common period table