Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Wondering if there a smart way to do this, I have table with cases and their open and closed dates.
For the times when the case is still open, I want the card to show "Still Open", I have achieved this using two measures:
Solved! Go to Solution.
sure 🙂
Your approach will only work when [Date Closed] is of type text.
You can use COALESCE
Thank you! So there is no way to have only one measure to achieve this?
sure 🙂
Ah, right, I remember. There is a bug in FORMAT that happily returns an empty string instead of BLANK().
Oh well, back to your version.
=IF(ISBLANK(MAX('Query1'[DateClosed])),"Still Open",FORMAT(MAX('Query1'[DateClosed]),"MM/DD/YYYY"))
Thank you! Works now!
And, interesting, I guess that bug can be used to our advantage in some cases
Thank you!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.