Forum Discussion
procyon82
10 years agoResolver I
Averages
Hi, What is the best way to create calculated monthly data in Power BI desktop? I have a set of daily data and if I let's say want to display the data monthly, it works great until you do a c...
- 10 years ago
Right, sorry, you have to use aggregates in a measure, so the proper formula would be:
Pages/Session = DIVIDE(SUM([Pageviews]),SUM([Sessions]),0)
Greg_Deckler
10 years agoCommunity Champion
Right, sorry, you have to use aggregates in a measure, so the proper formula would be:
Pages/Session = DIVIDE(SUM([Pageviews]),SUM([Sessions]),0)
procyon82
10 years agoResolver I
Greg_Deckler That did it! Thanks a lot.