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! Request now
I am trying to acurately display days since opened and days since closed in calculated columns. My days since closed column which is:
Days Since Closed = tblAccounts[Todays Date] - tblAccounts[Account Closed]
is returning this 48888 when there is no closed date.
How can I get this to return zero if the Account closed Column is blank?
Thanks in advance!
Solved! Go to Solution.
Hi @OhLookAnError
Please try
Days Since Closed =
tblAccounts[Todays Date]
- COALESCE ( tblAccounts[Account Closed], tblAccounts[Todays Date] )
Hi @OhLookAnError
Please try
Days Since Closed =
tblAccounts[Todays Date]
- COALESCE ( tblAccounts[Account Closed], tblAccounts[Todays Date] )
Worked, Thank you!
try this:
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.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 15 | |
| 8 | |
| 8 | |
| 8 |