Forum Discussion
Anonymous
4 years agoNot applicable
Slicer Issue in desktop
Hi all, I currently have a slicer with dropdown dates. When I refresh the data, I need to manually change the date in slicer. How can I make it to refresh automatically? As in the above...
amitchandak
Super User
4 years agoAnonymous , You need to create a static column like this and save or today or yesterday
Date Type = SWITCH(TRUE(),'Date'[Date]=TODAY(),"Today"
,'Date'[Date]=TODAY()-1,"Yesterday"
,'Date'[Date]=TODAY()-2,"2 Days Ago"
,'Date'[Date]&"")
As of now only this work around is there