Forum Discussion
Date Slicer Default
- 4 years ago
ringovski , Power Bi do not support any funtion for that.
You need to create a column with yesterdat value and use that
example - This has date along with with yesterday, today
Date Type =
SWITCH(TRUE(),
'Date'[Date] = TODAY(), "Today",
'Date'[Date] = TODAY() -1 , "Yesterday",
'Date'[Date] = TODAY() +1 , "Tomorrow",
[Date]& "")You can save this on yesterday . also you can sort this on date column
Default Date Today/ This Month / This Year: https://www.youtube.com/watch?v=hfn05preQYA
ringovski , Power Bi do not support any funtion for that.
You need to create a column with yesterdat value and use that
example - This has date along with with yesterday, today
Date Type =
SWITCH(TRUE(),
'Date'[Date] = TODAY(), "Today",
'Date'[Date] = TODAY() -1 , "Yesterday",
'Date'[Date] = TODAY() +1 , "Tomorrow",
[Date]& "")
You can save this on yesterday . also you can sort this on date column
Default Date Today/ This Month / This Year: https://www.youtube.com/watch?v=hfn05preQYA