Forum Discussion
howcreech
1 year agoRegular Visitor
Date Measure if blank
Hi, What I want to create is a measure that looks for a date in a named column, if it is blank to run edate(today(),2) if it contains a date return the existing date. I used a similar measure on ...
- 1 year ago
Hi Everyone,
I used some of the information provided and used an internal AI system to find the below DAX operation that worked:
Target End Date 2 =IF(not(isblank(selectedvalue('Support Request'[Completed]))),selectedvalue('Support Request'[Completed]),edate(today(),2))Thank you everyone for the help.
howcreech
1 year agoRegular Visitor
Hi Everyone,
I used some of the information provided and used an internal AI system to find the below DAX operation that worked:
Target End Date 2 =
IF(
not(isblank(selectedvalue('Support Request'[Completed]))),
selectedvalue('Support Request'[Completed]),
edate(today(),2))
Thank you everyone for the help.