Forum Discussion
Anonymous
7 years agoNot applicable
Avg. Weekly Run Rate
Hi All, Side note: I haven't worked a lot with PBI and therefore don't have that much experience with DAX. I created a measure in which I calculated the average weekly Run Rate: Avg. We...
- Anonymous7 years ago
I fixed it myself by just substracting de amount of weeks that were used in the first quarter. Tried SUM, AVERAGE(X), didn't work for me. Maybe has to do with Process_Date[week], when filtering Q2, it works with the weeknumbers instead of calculating the weeks. Therefore substracting with a higher amount then it should. By substracting Q1 (13 weeks) it divides by the right amount. Same trick next quarter.
Avg. Weekly Run Rate Nieuw Contract =VAR WeeksWithSales = CALCULATE( MAX( Process_Date[Week] ); FILTER( ALLSELECTED( Process_Date ); [N] > 0 ) ) - 13var CumulativeTotal = CALCULATE( [Nieuw contract (cumulative)]; ALLSELECTED( Process_Date ) )RETURNDIVIDE( CumulativeTotal; WeeksWithSales; 0 )
v-chuncz-msft
7 years agoCommunity Support
Anonymous
7 years agoNot applicable
Maybe it's me, but I don't really understand what you're trying to say here?
I tried using AVERAGEX instead of MAX, however this didn't work.
Could elaborate more please?