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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Madhura29
Frequent Visitor

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

@Madhura29 , 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

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

@Madhura29 , 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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.