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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Oros
Post Prodigy
Post Prodigy

Dynamic header

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.

 

Oros_0-1734612053270.png

 

1 ACCEPTED SOLUTION
danextian
Super User
Super User

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 )

danextian_0-1734613817268.png

Please see the attached pbix.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

2 REPLIES 2
danextian
Super User
Super User

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 )

danextian_0-1734613817268.png

Please see the attached pbix.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Hi @danextian ,

 

Thank you very much for your quick reply.  You're a magician! 🙂

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors