Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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"
)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 21 | |
| 14 | |
| 11 | |
| 6 | |
| 5 |