Question on how to correct a formula

Robert Wyatt

Board Regular
Joined
Jul 15, 2012
Messages
108
Office Version
  1. 2019
Platform
  1. Windows
I'm trying to fix up a sheet with Allowed annual figures and Estimated Annual figures. but if there is only one figure I would like to show 0 for the difference. the formula I have I can't seem to get right can you help?

Book1
AB
4Social Security InformationAmount
5Allowed Monthly Gross$ 1,770.00
6Estimated Monthly Gross$ 1,596.96
7Difference$ 173.00
8Allowed Annually Gross$ 21,240.00
9Estimated Annually Gross$ 20,760.48
10Difference$ 480.00
Sheet1
Cell Formulas
RangeFormula
B7,B10B7=ROUND(IF(B6>B5,0,B5-B6),+ROUND(IF(B6<B5,0,B5-B6),2))
 
probably something like this:
Excel Formula:
=IF(OR(B6=0,B5=0),0,ROUND(IF(B6>B5,0,B5-B6),+ROUND(IF(B6<B5,0,B5-B6),2)))
 
Upvote 0
Solution

Forum statistics

Threads
1,226,771
Messages
6,192,924
Members
453,767
Latest member
922aloose

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top