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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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
Solved! Go to Solution.
@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
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/
@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 feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 53 | |
| 40 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 97 | |
| 81 | |
| 35 | |
| 29 | |
| 25 |