Forum Discussion
Rahulsingh
Helper I
8 years agoHow 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.
Greg_Deckler
Community Champion
8 years agoPerhaps something like:
MyDate = MAX(Table[DateRec])
Rahulsingh
Helper I
8 years agohi Greg,
I have used this logic but it gives me the max date of that column which is 5/7/2018 and completely ignores the selection.