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
Anonymous
Not applicable

Dynamic Header Column in a table visual

Hello everyone ! Could you please help me with the following doubt.

 

How do I select the Month name in the table, where If I select the month is january, the next column should display me the months after january and in that quarter. 

The data should be displayed as 

If I select the Jan 

Jan Feb March Quarter1 
If I select April

April May June Quarter2 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Prefer to use an independent date table for slicer and this measure will cover remaining months

 

measure =

var _min = minx(allselected('Date1'), Date1[Date])
var _max = maxx(allselected('Date1'),endofquarter( Date1[Date]))
return
calculate(Sum('Table'[Value]), filter('Date', 'Date'[Date] <=_max && 'Date'[Date] >=_min ))

 

on matrix column, you can have a month with column grand total

 

Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI

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

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Here's a technique by Alberto Ferrari (the DAX Guru of All Times) that enables things like this and much more: https://www.sqlbi.com/tv/show-last-13-months-based-on-user-single-slicer-selection/

 

 

amitchandak
Super User
Super User

@Anonymous , Prefer to use an independent date table for slicer and this measure will cover remaining months

 

measure =

var _min = minx(allselected('Date1'), Date1[Date])
var _max = maxx(allselected('Date1'),endofquarter( Date1[Date]))
return
calculate(Sum('Table'[Value]), filter('Date', 'Date'[Date] <=_max && 'Date'[Date] >=_min ))

 

on matrix column, you can have a month with column grand total

 

Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI

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
Top Kudoed Authors