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 all,
Here is my code:
Solved! Go to Solution.
My bad, didn't realize the formatting used in your formula.
Try those suggestions without the Format function to replace the blanks with 0.
Or change your format from ("#,###" to "0,0") and see if that resolves.
More on formatting here:
https://docs.microsoft.com/en-us/dotnet/standard/base-types/custom-numeric-format-strings
Regards,
Tarun
Did I answer your question? Mark my post as a solution!
Try this: Add 0 to your [Total Valet] measure.
TotalValetSite = Format(FactLots[Total Valet] + 0,"#,###") & " total valets this week."
If that does not work, try the following:
TotalValetSite = Format(IF(FactLots[Total Valet] = BLANK(), 0 , FactLots[Total Valet]),"#,###") & " total valets this week."
Regards,
Tarun
Did I answer your question? Mark my post as a solution!
Thank you Tarunsingla, however, neither of those options worked 😞
My bad, didn't realize the formatting used in your formula.
Try those suggestions without the Format function to replace the blanks with 0.
Or change your format from ("#,###" to "0,0") and see if that resolves.
More on formatting here:
https://docs.microsoft.com/en-us/dotnet/standard/base-types/custom-numeric-format-strings
Regards,
Tarun
Did I answer your question? Mark my post as a solution!
Thank you again, have a nice 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.