How to change formula

cummingsea

Active Member
Joined
Aug 9, 2005
Messages
343
Office Version
  1. 2019
Platform
  1. Windows
I have the following formula =IFERROR((IF(C19="","",C19+C5)),"") in a workbook in Excel 2007, but it will not work in Excel 2003, I know tha I have to use ISBLANK, I tried replacin the IFERROR with ISBLANK but that did not work. Said I had to manu arguments.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).

barry houdini

MrExcel MVP
Joined
Mar 23, 2005
Messages
20,825
What sort of error do you expect? If C19 or C5 might be text perhaps just use

=IF(C19="","",SUM(C19,C5))

or for all eventualities

=IF(ISERROR(IF(C19="","",C19+C5)),"",IF(C19="","",C19+C5))
 
Upvote 0

cummingsea

Active Member
Joined
Aug 9, 2005
Messages
343
Office Version
  1. 2019
Platform
  1. Windows
I used the second one and it works fine. Thanks A Million, Now if you can please help me with this one =IFERROR((IF(K6="","",K6)),"")
 
Upvote 0

Forum statistics

Threads
1,190,959
Messages
5,983,863
Members
439,867
Latest member
Shadrack

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
Top