Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
EagerLearner
New Member

Matrix report with Multiple dates

I have a visual below which is a Matrix report. For Rows, I have Current date - 1 as 1st row, Current month - 1 as Row 2, Current month in Row 3 and Current year in Row 4. This should be dynamic every month it should be changed Automatically.  Please help me with this. Reference pictures are below Any Idea on this @amitchandak  

EagerLearner_0-1684813930883.png

 

Thank you!

 

#matrixreport

 

 

1 REPLY 1
amitchandak
Super User
Super User

@EagerLearner , A calculation group of This day, This month , Last Month, This Year.

Then all measure in another calculation group and edit table for that and add column for inbound, outbount and agent

 

I have done something similar here. See if this can help

Calculation Groups- Measure Slicer, Measure Header Grouping, Measure to dimension conversion. Complex Table display : https://youtu.be/qMNv67P8Go0

 

if you do not like, this month, this day etc. We need have independent or extended table with today, this month, last month and year data and join with date table and use in visual

 

Union (

row("Date", today(), "Type", format(today(), "mm-dd-yyyy")),

addcolumn(calendar(eomonth(Today(),-1)+1 , eomonth(today(),0) ), "Type", format([Date], "mmm-yyyy"))
addcolumn(calendar(eomonth(Today(),-2)+1 , eomonth(today(),-1) ), "Type", format([Date], "mmm-yyyy"))
addcolumn(calendar(eomonth(Today(),-1* month(Today()) )+1 , eomonth(today(),12 -1* month(Today())) ), "Type", format([Date], "yyyy"))
)

 

Join this table with the date table and from the visual remove the blank for this table. this should avoid the need for a calculation group of day and month formula . But the second one is still needed to group the measures

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors