Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have the following matrix with fiscal quarter and month in the columns. (Just noticed months are out of order, but I'll fix that separately.) My client would like to see all 12 monthly totals next to each other, followed by the 4 quarter (FQ) totals, then the year (FY) total. Is it possible to group all the FQ totals together after the months?
Solved! Go to Solution.
@carinalou , I doubt that.
For that we create a new table. where have month year, month, qtr and year , final name
This will have data for a month with the month as the final name
then you need to repeat the same data with Qtr as the final name
then you will append same data year as final name
Join this with your date table many to many join filter your date table
I have added a sample file after the signature. In case you year to separate out take a year on column too
@carinalou , I doubt that.
For that we create a new table. where have month year, month, qtr and year , final name
This will have data for a month with the month as the final name
then you need to repeat the same data with Qtr as the final name
then you will append same data year as final name
Join this with your date table many to many join filter your date table
I have added a sample file after the signature. In case you year to separate out take a year on column too
Thanks so much for your help!