IF(ISERROR) help

mooseboy

New Member
Joined
May 5, 2022
Messages
8
Office Version
  1. 365
  2. 2016
This is my current cell(N3) and it works great:
=IF(L3>=10.01,((M3*8)+((M3*1.5)*(10-8))+((M3*2)*(L3-10))),IF(L3>=8.01,((M3*8)+((M3*1.5)*(L3-8))),IF(L3>0,L3*M3,"-")))

BUT, I would like a bit more help please

The adjacent cell is this, it sums four separate cells, of which the above is one of them
=IF(ISERROR(E3+H3+K3+N3),"-",E3+H3+K3+N3)

So if N3 is "-", it does not recognize E3+H3+K3+ (-) = (-)
How can an ISERROR be added to cell N3 ?
I could put ,"$0.00" in place of the ,"-" at the back end of cell N3 but it doesn't look as pretty...
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
If N3 is "-" do you still want to add the other 3 cells, or just return"-"?
 
Upvote 0
In that case try
Excel Formula:
=SUM(E3,H3,K3,N3)
 
Upvote 0
Solution
That formula will not return an error, unless one of the cells contains an error.
 
Upvote 0
That formula will not return an error, unless one of the cells contains an error.
the cells will return a "-" unless there are calculated numbers within them
example: cells E3 and K3 may have monetary numbers within them while cells H3 and N3 have nothing and return "-"
 
Upvote 0
The formula I suggested will simply ignore text, it will not return an error unless one of the cells it's looking at returns an error.
So if you are getting an error & none of the cells contains an error, then you are not using the formula I posted.
 
Upvote 0
Glad to help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,433
Members
448,897
Latest member
ksjohnson1970

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