Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
Solved! Go to Solution.
Hi @Yagevendra ,
Please try the measure.
Title =
MIN (
CALCULATE (
DISTINCTCOUNT ( 'Table'[Date] ),
FILTER ( 'Table', 'Table'[Date] <= MAX ( Dates[Date] ) )
),
28
) & " Days"
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.
Hi @Yagevendra ,
Please try the measure.
Title =
MIN (
CALCULATE (
DISTINCTCOUNT ( 'Table'[Date] ),
FILTER ( 'Table', 'Table'[Date] <= MAX ( Dates[Date] ) )
),
28
) & " Days"
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.
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:
With Slicer Selection:
Thanks,
Arul
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.
Okay, How is expected output should be shown in your report?
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
108 | |
98 | |
39 | |
30 |