Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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 List end date is not today but on a later date and beyond, then return a text as "Ongoing"
3. If Resource List end date is blank, then return a text as also "Ongoing".
My error is if resource list end date is blank the return text is "Contract End" which is supposed to be "Ongoing".
Thank you for your help. 😞
Solved! Go to Solution.
Please try
Resource Status =
IF (
COALESCE ( 'Resource List'[End Date], TODAY () ) < TODAY (),
"Contract End",
"Ongoing"
)
Hi @tamerj1 Here it is. Thank you.
Please try
Resource Status =
IF (
COALESCE ( 'Resource List'[End Date], TODAY () ) < TODAY (),
"Contract End",
"Ongoing"
)
User | Count |
---|---|
17 | |
16 | |
14 | |
13 | |
12 |
User | Count |
---|---|
17 | |
14 | |
12 | |
10 | |
9 |