Woofaloo

New Member
Joined
Dec 9, 2014
Messages
5
Last year I created a spreadsheet with the following formula:

=IF(ISBLANK(B20),"",B20*$E$9) entered under the services

NOTE cell E9 = 600

QtyServiceExpensesTotal
160020620

<tbody>
</tbody>

=IF(OR(ISBLANK(B20)),"",(D20+E20)) entered under Total

OK this has worked until I upgraded to Microsoft One Drive and downloaded Office 2016.

Can anyone tell me if I have a problem in the formula or if you have noticed a glitch in Excel 2016?

Thanks,
Phylis
 
Last edited:

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Are you getting an error or unexpected results?
What exactly is being returned?

Code:
[COLOR=#333333]=IF(OR(ISBLANK(B20)),"",(D20+E20))[/COLOR]
Why do you have an OR statement for only one condition?
That is unnecessary.

You can just use:
Code:
[COLOR=#333333]=IF(ISBLANK(B20),"",D20+E20)[/COLOR]

If you are getting some unexpected error, what does this return?
Code:
=ISBLANK(B20)
 
Upvote 0
Are your cell references correct? What columns are your numbers in?

or is your sheet like the following?


Excel 2010
BCDE
19QtyServiceExpensesTotal
201600.0020.00620.00
21
22
1c
Cell Formulas
RangeFormula
C20=IF(ISBLANK(B20),"",B20*$E$9)
E20=IF(ISBLANK(B20),"",C20+D20)
 
Upvote 0

Forum statistics

Threads
1,215,746
Messages
6,126,647
Members
449,325
Latest member
Hardey6ix

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