Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. 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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 45 | |
| 43 | |
| 38 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 67 | |
| 66 | |
| 31 | |
| 28 | |
| 24 |