Forum Discussion
vjnvinod
Impactful Individual
6 years agoCumulative month on Month data
amitchandak i have some revenue data its comes to me on a month on month basis but it will be cumulative dataset for eg P1, p2=P1+P2 and so on till P12 Currently the power BI dashboard...
- 6 years ago
vjnvinod ,
Join with Date table, Create during the last ticket. We have rank for the period there.
Something like
This period Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(all(Date), Date[period Rank]= Max(Date[period Rank])))
- CALCULATE(SUM(Sales[Sales Amount]),filter(all(Date), Date[period Rank]= Max(Date[period Rank])-1))
amitchandak
Super User
6 years agovjnvinod ,
Join with Date table, Create during the last ticket. We have rank for the period there.
Something like
This period Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(all(Date), Date[period Rank]= Max(Date[period Rank])))
- CALCULATE(SUM(Sales[Sales Amount]),filter(all(Date), Date[period Rank]= Max(Date[period Rank])-1))
vjnvinod
Impactful Individual
6 years ago