Forum Discussion
Anonymous
6 years agoNot applicable
show value based on current date
Hello, I have a Date table with columns such as DateKey, PreviousWorkingDateKey, etc. I would like to have a measure which shows the previousWorkingDateKey for today's DateKey How is ithis done pl...
- 6 years ago
HI Anonymous
If so, just adjust the formula as below:
Measure 2 = var _preworkingdatekey= calculate(max('Date'[PreviousWorkingDate]),filter('Date','Date'[DateValue] = today())) return DATE(VALUE(LEFT(_preworkingdatekey,4)),VALUE(MID(_preworkingdatekey,5,2)),VALUE(RIGHT(_preworkingdatekey,2)))Regards,
Lin
Anonymous
6 years agoNot applicable
Measure =
= calculate(max('Date'[Previous Working Date Key]),filter('Date','Date'[Value] = today()))
Previous Working Date key is in integers
Date Key is in integers
Date Value is in Date
The above measure shows 20M rather than date.
Do you know why?
Thank you
v-lili6-msft
Community Support
6 years agoHI Anonymous
If so, just adjust the formula as below:
Measure 2 =
var _preworkingdatekey= calculate(max('Date'[PreviousWorkingDate]),filter('Date','Date'[DateValue] = today())) return
DATE(VALUE(LEFT(_preworkingdatekey,4)),VALUE(MID(_preworkingdatekey,5,2)),VALUE(RIGHT(_preworkingdatekey,2)))
Regards,
Lin