Forum Discussion
Rahulsingh
8 years agoHelper I
How to get value from date slicer
Hi Everyone, I am trying to get the date out of this slicer to use it in a formula. How can I get 3/31/2018 from a slicer in order to pass it to the calculated column? Any help would be greatl...
- Anonymous8 years ago
Hi Rahulsingh,
Use this formula:
Date_Selected = CALCULATE(MAX(Date_Table[DateRec]);ALLSELECTED(Date_Table))
Regards.
Ashish_Mathur
7 years agoSuper User
Hi,
Assuming the Date slicer is built from a Calendar Table, try this measure
=Max(Calendar[Date])
Hope this helps.
NKotak_Leecare
4 years agoHelper III
Thank you Ashish_Mathur ! It worked well.
- Ashish_Mathur4 years agoSuper User
You are welcome.