Forum Discussion
Custom title based on date range slicer
I've watched some vids on how to create a custom title - lots of info out there. I'm just a bit baffled on how to create a custom title for a slicer that has a date range listed:
The only field in the slicer is called Date_Entered.
Thanks in advance!
Hi,
Does this measure work
= "Records from "&MIN(Data[Date_Entered])&" - "&MAX(Data[Date_Entered])
Place this measure in a card visual.
4 Replies
- sanimesaPost Prodigy
Shpongle This post should work for you:
https://community.powerbi.com/t5/Desktop/Need-help-on-Dynamic-Title-based-on-date-range/m-p/909338
Basically you use a DAX measure to build the custom titile and then place it in a card.
- Ashish_MathurSuper User
Hi,
Does this measure work
= "Records from "&MIN(Data[Date_Entered])&" - "&MAX(Data[Date_Entered])
Place this measure in a card visual.
- ShpongleHelper III
That worked perfectly!
THANKS for the education 🙂
- Ashish_MathurSuper User
You are welcome.