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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Kudoed Authors