Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have report I need to build but layout requested is to have month over month aggregated over 3 month period. How could i do this in PBI? With matrix, the groupings and subtotals automatically get incorporated into each column group.
see below example of how i need it
Issues i found using matrix
Solved! Go to Solution.
Hi, @Anonymous ;
Base on my understand , you could have two ways to achieve it, as follows:
Method1:
1. create a Auxiliary table(Table2)
Table2 =
var _a= SUMMARIZE('Table','Table'[cate],'Table'[date],"month",FORMAT('Table'[date],"Mmm"))
var _b=SUMMARIZE('Table','Table'[cate],"1",BLANK(),"month","MOM%")
return UNION(_a,_b)
2.create a measure2,
Measure 2 =
VAR _PER=CALCULATE(SUM('Table'[value]),FILTER(ALLEXCEPT('Table','Table'[client]) ,[cate]=MAX('Table2'[cate])))/CALCULATE(SUM('Table'[value]),ALL('Table2'))
VAR _B= IF(MAX('Table2'[month])="MOM%",FORMAT(_PER,"0%"), CALCULATE(SUM('Table'[value]),FILTER('Table',[cate]=MAX('Table2'[cate])&&[date]=MAX('Table2'[date]))))
RETURN IF(ISFILTERED('Table2'[month]), _B,SUM('Table'[value]))
The final output is shown below:
Method2:
1. add three rows in power query .
2.create a measure1
Measure1 =
VAR _mom =
CALCULATE (
SUM ( 'another'[value] ),
ALLEXCEPT ( 'another', 'another'[client], 'another'[cate] ))
RETURN
IF (
ISFILTERED ( 'another'[date] ),
IF (
MAX ( 'another'[date] ) = "MOM%",
FORMAT (_mom/ CALCULATE ( SUM ( 'another'[value] ),ALLEXCEPT ( 'another', 'another'[client] )),"0%"),
SUM ( 'another'[value] )),
_mom)
The final output is shown below:
if not right, can you share me simple file after removing the sensitive information?
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous ;
Base on my understand , you could have two ways to achieve it, as follows:
Method1:
1. create a Auxiliary table(Table2)
Table2 =
var _a= SUMMARIZE('Table','Table'[cate],'Table'[date],"month",FORMAT('Table'[date],"Mmm"))
var _b=SUMMARIZE('Table','Table'[cate],"1",BLANK(),"month","MOM%")
return UNION(_a,_b)
2.create a measure2,
Measure 2 =
VAR _PER=CALCULATE(SUM('Table'[value]),FILTER(ALLEXCEPT('Table','Table'[client]) ,[cate]=MAX('Table2'[cate])))/CALCULATE(SUM('Table'[value]),ALL('Table2'))
VAR _B= IF(MAX('Table2'[month])="MOM%",FORMAT(_PER,"0%"), CALCULATE(SUM('Table'[value]),FILTER('Table',[cate]=MAX('Table2'[cate])&&[date]=MAX('Table2'[date]))))
RETURN IF(ISFILTERED('Table2'[month]), _B,SUM('Table'[value]))
The final output is shown below:
Method2:
1. add three rows in power query .
2.create a measure1
Measure1 =
VAR _mom =
CALCULATE (
SUM ( 'another'[value] ),
ALLEXCEPT ( 'another', 'another'[client], 'another'[cate] ))
RETURN
IF (
ISFILTERED ( 'another'[date] ),
IF (
MAX ( 'another'[date] ) = "MOM%",
FORMAT (_mom/ CALCULATE ( SUM ( 'another'[value] ),ALLEXCEPT ( 'another', 'another'[client] )),"0%"),
SUM ( 'another'[value] )),
_mom)
The final output is shown below:
if not right, can you share me simple file after removing the sensitive information?
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Hard to be sure but sounds like Rolling Months: https://community.powerbi.com/t5/Quick-Measures-Gallery/Rolling-Months/m-p/391499#M124
If not, Sorry, having trouble following, can you post sample data as text and expected output?
Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882
Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
68 | |
64 | |
50 | |
36 | |
26 |
User | Count |
---|---|
80 | |
57 | |
45 | |
44 | |
35 |