Hide #VALUE! Error

Unexpc

Active Member
Joined
Nov 12, 2020
Messages
496
Office Version
  1. 2019
Platform
  1. Windows
Hi guys
i have a SUM formula that total of three link cells and when link cells is empty, SUM formula show value erroring
how hide this error?
i have 3 different formula for SUM in the specific cells
for example in E8 : =SUM(C8+D8) , E9 : =SUM(E8+C9)+D9 , E42 : =SUM(C42+D42,Sheet1!E39) *Sheet1 is my worksheet not other sheet
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Try
Excel Formula:
=SUM(C8:D8)
=SUM(C9:D9,E8)
=SUM(C42:D42,E39)
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0
onething, i want generally hide this cells, for example in E9 : =SUM(C10:D10,E9) and when i drag and fill down, it shows last number in E9, because C10 and D10 is last fill cells and next cells still empty for doing sum in E10,E11,... i want after cells from E9 (or like cells this) hide and show empty, any function exist that doing this?
 
Upvote 0
How about
Excel Formula:
=IF(AND(C9="",D9=""),"",SUM(C9:D9,E8))
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,893
Members
449,097
Latest member
dbomb1414

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