Forum Discussion
Anonymous
5 years agoNot applicable
'Same Store' Utilzation
Hi guys, I'd like to see the growth of 'same store' volume (same store = not including new customers) I have the following Table Data: CUST SAP Number RunYearMonth C17 Volume 111 2020M...
amitchandak
Super User
5 years agoAnonymous , move year to different table say date (This will work when the year is in the different table only
This Year = CALCULATE(sum('order'[Qty]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])))
Last Year = CALCULATE(sum('order'[Qty]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])-1))
diff = [This Year]-[Last Year ]
diff % = divide([This Year]-[Last Year ],[Last Year ])
- Anonymous5 years agoNot applicable