Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I have a month selector, as well as a 'last x months' parameter selector.
How do you show a dynamic title or header based on the selected month and selected last x months?
As examples in the image below, I would like to show the selected months (highlighted in yellow). Thanks.
Solved! Go to Solution.
hi @Oros
You will need to use a disconnected table for the count of months to add and the selected months. Below is the sample formula I used to obtain the title in the table in the screenshot
Periods Included =
VAR FilteredTable =
FILTER (
CALCULATETABLE (
VALUES ( DatesTable[Date] ),
DATESINPERIOD (
DatesTable[Date],
MAX ( DisconnectedDatesTable[Date] ),
- [XPeriod Value],
MONTH
)
),
DatesTable[Date]
= CALCULATE ( EOMONTH ( MAX ( DatesTable[Date] ), -1 ) + 1 )
)
VAR AddedColumns =
ADDCOLUMNS ( FilteredTable, "@Month Name", FORMAT ( [Date], "mmm" ) )
RETURN
CONCATENATEX ( AddedColumns, [@Month Name], ", ", [Date], ASC )
Please see the attached pbix.
hi @Oros
You will need to use a disconnected table for the count of months to add and the selected months. Below is the sample formula I used to obtain the title in the table in the screenshot
Periods Included =
VAR FilteredTable =
FILTER (
CALCULATETABLE (
VALUES ( DatesTable[Date] ),
DATESINPERIOD (
DatesTable[Date],
MAX ( DisconnectedDatesTable[Date] ),
- [XPeriod Value],
MONTH
)
),
DatesTable[Date]
= CALCULATE ( EOMONTH ( MAX ( DatesTable[Date] ), -1 ) + 1 )
)
VAR AddedColumns =
ADDCOLUMNS ( FilteredTable, "@Month Name", FORMAT ( [Date], "mmm" ) )
RETURN
CONCATENATEX ( AddedColumns, [@Month Name], ", ", [Date], ASC )
Please see the attached pbix.
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 |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 84 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |