Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

How to replace NaN with 0 in "Financial Reporting Matrix by Profitbase" visualization

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

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

Please try to use the following formula:

Measure =
IFERROR ( MAX ( 'Table'[A1] ) / MAX ( 'Table'[A2] ), 0 ) + 0

10.29.1.1.PNG

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

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

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

Anonymous
Not applicable

Hi @Anonymous ,

Please try to use the following formula:

Measure =
IFERROR ( MAX ( 'Table'[A1] ) / MAX ( 'Table'[A2] ), 0 ) + 0

10.29.1.1.PNG

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

Anonymous
Not applicable

Hi @Anonymous ,

According to the official documentWe 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 )

10.22.4.1.PNG

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

Anonymous
Not applicable

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors