#value formula result

Will Rose

New Member
Joined
Dec 2, 2011
Messages
7
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
I'm trying to add together 5 cells where the content of the cells is the following formula:

Cell Q7 formula =IFERROR((P7*O7),"")

using the following formula: =SUM(Q7+U7+Y7+AC7+AG7)

However, until i put a value in cells P7 & O7 (and the corresponding cells for the other 4 cells i'm trying to sum) and the formula calculates and gives a value to the cells, the for all of the 5 cells with this formula the i just getting "#value" in the sum column.

Is there a way round this?
 
you are using iferror - so that should solve the error

add that to the sum()

did you only want to calculat when the 5 cells are not blank

if(COUNTA(Q7,U7,Y7,AC7,AG7)=5, SUM(Q7+U7+Y7+AC7+AG7), "")
 
Upvote 0

Forum statistics

Threads
1,226,798
Messages
6,193,063
Members
453,773
Latest member
bclever07

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