if cell =0 display0 if greater than 0 add two cells

dbarrow

New Member
Joined
Nov 22, 2006
Messages
26
I have a table that I would like to calculate if the entry in a cell is greater than 0, if cell is 0 then display 0

if D11 = 0, display 0. If D11 >0 then add D11 to E10

I can't get the syuntax that works so any help appreciated.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
What about
Excel Formula:
=IF(D11=0,0,D11+E11)
Or
If D11 neg display nothing
Excel Formula:
=IF(D11=0,0,IF(D11>0,D11+E11,""))
 
Upvote 0
You're welcome
Things happens don't worry
Be happy and safe
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,877
Members
449,056
Latest member
ruhulaminappu

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