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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Flavio2021
Frequent Visitor

Dynamic title based on slicer date timeframe

Hi I am looking for create a dynamic title that report in the title the start and end date, selected from a list of dates that can be also multiple event in the same day.

Looking around, not found the right suggestion for manipulate it correclty, so far

 

Somone can help me ?    Here the PBIX you can use as example

 

 

 

 

2 ACCEPTED SOLUTIONS
lbendlin
Super User
Super User

lbendlin_0-1712622281406.png

Note that you have too many date values in your slicer, so sampling will occur.

 

 

 

Title = "Number of item from " & FORMAT(min('Table'[Date Created]),"m/d/yyyy") & " to " & format(max('Table'[Date Created]),"m/d/yyyy")

 

 

 

View solution in original post

Flavio2021
Frequent Visitor

You are fully right !  I have complicated my life for nothing    Thank you ! it work as needed !

View solution in original post

2 REPLIES 2
Flavio2021
Frequent Visitor

You are fully right !  I have complicated my life for nothing    Thank you ! it work as needed !

lbendlin
Super User
Super User

lbendlin_0-1712622281406.png

Note that you have too many date values in your slicer, so sampling will occur.

 

 

 

Title = "Number of item from " & FORMAT(min('Table'[Date Created]),"m/d/yyyy") & " to " & format(max('Table'[Date Created]),"m/d/yyyy")

 

 

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

Top Solution Authors