Forum Discussion
CREATE DINAMIC TITLE
How can I create a dynamic title with the selected dates of the data slicer?
WEEKLY PLAN 25 TO 26 FEBRUARY?
Try the measurement below
Measure - "Weekly Plan" and FIRSTDATE(Table[Date]) and " to " & LASTDATE(Table[Date])
Best regards
You can create a measure such as,
Dynmic Title = "Report with Dynamic Title: " & min('table'[Date]) & " - " & MAX('table'[Date] )Thank you
Hello.
Try the measure below
Measure = "Plan Semanal " & FIRSTDATE(Table[Date]) & " al " & LASTDATE(Table[Date])
Best Regards
4 Replies
- PortrekResolver III
Try the measurement below
Measure - "Weekly Plan" and FIRSTDATE(Table[Date]) and " to " & LASTDATE(Table[Date])
Best regards
- richbenmintzResident Rockstar
You can create a measure such as,
Dynmic Title = "Report with Dynamic Title: " & min('table'[Date]) & " - " & MAX('table'[Date] )Thank you
- Syndicate_AdminAdministrator
Hello.
Try the measure below
Measure = "Plan Semanal " & FIRSTDATE(Table[Date]) & " al " & LASTDATE(Table[Date])
Best Regards
- AnonymousNot applicable
Hi Syndicate_Admin
I would instead create a measure to suit if the date ranges across multiple months.Dynamic Title = "Weekly Plan " & FORMAT(MIN(table[date]),"DD-MMM") & " to " &FORMAT(MAX(table[date]),"DD-MMM")