Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi All,
I have a regular date silcer with single select enabled and date table but the client is asking for it to defualt to yesterday as the report is refeshed daily with yesterdays data. They don't want to use the relative option becuase it's not viewable as a calendar.
Any assistance would be appreaicated, Is there a way to do this?
Thanks
Solved! Go to Solution.
@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
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |