Forum Discussion
third_hicana
Helper IV
4 years agoIf blank return a "text"
Hi DAX Experts. Do you know what is wrong with my Dax formula. So here's the logical test. 1. If Resource List end date is today and prior,then it will return as "Contract End". 2. If Resource Lis...
- 3 years ago
Please try
Resource Status =
IF (
COALESCE ( 'Resource List'[End Date], TODAY () ) < TODAY (),
"Contract End",
"Ongoing"
)
tamerj1
Community Champion
3 years agoHi third_hicana
can you please compy/paste the formula so I can edit?
- third_hicana3 years ago
Helper IV
Hi tamerj1 Here it is. Thank you.
Resource Status = IF('Resource List'[End Date] < TODAY(),"Contract End",IF('Resource List'[End Date] >= TODAY(),"Ongoing", "Ongoing"))- tamerj13 years ago
Community Champion
Please try
Resource Status =
IF (
COALESCE ( 'Resource List'[End Date], TODAY () ) < TODAY (),
"Contract End",
"Ongoing"
)- third_hicana3 years ago
Helper IV
Hi tamerj1
It works now. Thank you very much. 🙂