cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Yagevendra
Helper IV
Helper IV

Dynamic Title with date slicer

Hi all, is there any way to create dynamic title with selection of date from the drop-down filter?

My requirement is to create a dynamic title if user select any date from the date slicer the title should change the number in title suppose today is 10/05/2022 we need to show today data + (today - 28 days) data in chart and for title it should show 28 days data.

If my date start from 1 February 2022 and user select this date so title should change and show 1 days data.

if user select 2 February data it should show 2 days of data (Today+ (today-last 28 days data).

Please help to resolve this type of scenario.

1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @Yagevendra ,

 

Please try the measure.

 

Title = 
MIN (
    CALCULATE (
        DISTINCTCOUNT ( 'Table'[Date] ),
        FILTER ( 'Table', 'Table'[Date] <= MAX ( Dates[Date] ) )
    ),
    28
) & " Days"

vkkfmsft_0-1652410067220.pngvkkfmsft_1-1652410085669.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

4 REPLIES 4
v-kkf-msft
Community Support
Community Support

Hi @Yagevendra ,

 

Please try the measure.

 

Title = 
MIN (
    CALCULATE (
        DISTINCTCOUNT ( 'Table'[Date] ),
        FILTER ( 'Table', 'Table'[Date] <= MAX ( Dates[Date] ) )
    ),
    28
) & " Days"

vkkfmsft_0-1652410067220.pngvkkfmsft_1-1652410085669.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Arul
Super User
Super User

@Yagevendra ,

I hope this measure would help you,

Dynamic Title = IF(HASONEVALUE(Table_count[Date])=TRUE(), SELECTEDVALUE(Table_count[Date]) &"-"&"Last 28 days data",BLANK())

Without Slicer Selection:

Arul_0-1652184871985.png

With Slicer Selection:

Arul_1-1652184914955.png

Thanks,

Arul

 

Regards,
Arul
If I answered your question kindly mark my post as a solution and a kudo would be appreciated.

Hi @Arul

thanks for your reply, If I consider your scenario, Date in header should be in integer values 
if user select min date from the filter it should show 1 if user select 2nd of Jan date it should show 2.
suppose we have 30 days of data if user select 29 of Jan it should show 28 because we are showing last 28 date of data on each date.

@Yagevendra ,

 

Okay, How is expected output should be shown in your report?

 

 

Regards,
Arul
If I answered your question kindly mark my post as a solution and a kudo would be appreciated.

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors