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
Hi,
This might be a stupid question, but I have this formula:
Solved! Go to Solution.
Hi @Anonymous
Try this. It will return a blank where the result is zero. You can then select on the visual whether you want to show blanks:
Unsubmitted =
VAR Res_ = SUM('report'[Person_Registered]) - SUM('report'[Candidate_Registered])
RETURN
IF(Res_ <> 0; Res_)
Hi @Anonymous
Try this. It will return a blank where the result is zero. You can then select on the visual whether you want to show blanks:
Unsubmitted =
VAR Res_ = SUM('report'[Person_Registered]) - SUM('report'[Candidate_Registered])
RETURN
IF(Res_ <> 0; Res_)
Thank you @AlB, it works perfectly!
Just replaced the ";" with a comma
IF(Res_ <> 0, Res_)
The full working formula is:
Unsubmitted =
VAR Res_ = SUM('report'[Person_Registered]) - SUM('report'[Candidate_Registered])
RETURN
IF(Res_ <> 0, Res_)
Have a lovely day!
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.