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,
I am using "Financial Reporting Matrix by Profitbase" visualization, sole purpose of it is to have row level calculation.
Issue: I created a calculated row a3 = a2 / a1, when a1 and a2 are 0s or a1 is 0, the output of a3 is NaN.
Account | Amount
a1 | 0
a2 | 0
a3 | NaN
Please suggest on how to replace this NaN or suggest some other visualiztions to work with that would suffice the above scenario.
Warm Regards,
Sreetej
Solved! Go to Solution.
Hi @Anonymous ,
Please try to use the following formula:
Measure =
IFERROR ( MAX ( 'Table'[A1] ) / MAX ( 'Table'[A2] ), 0 ) + 0Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
Hi @Anonymous ,
Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file from your Onedrive for Business.
Best Regards,
Eyelyn Qin
Hi @Anonymous ,
Please try to use the following formula:
Measure =
IFERROR ( MAX ( 'Table'[A1] ) / MAX ( 'Table'[A2] ), 0 ) + 0Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
Hi @Anonymous ,
According to the official document , We recommend that you use the DIVIDE function whenever the denominator is an expression that could return zero or BLANK.
And if you want to return an alternate value—— 0, you could use IF( ) function as belows:
useDivide =
VAR _value =
DIVIDE ( MAX ( 'Table'[A1] ), MAX ( 'Table'[A2] ) )
RETURN
IF ( _value = BLANK (), 0, _value )Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
Hi Eyelyn,
We are using "Financial Reporting Matrix by Profitbase" visualization.
This does not have an option to use any functions like divide. We can only use +, -, *, /.
Thanks,
Sreetej
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.