SUMPRODUCT working in argument window, but returns error in cell

improvet

New Member
Joined
Apr 26, 2017
Messages
14
Hi!

I have two rows with values and I'm using sumproduct to subtract the two. However I also need the formula to ignore empty fields and don't do the substraction if the lower field is empty. It seems to work when i use the insert function window, but once the formula is applied to a cell it returns the error #VALUE


=SUMPRODUCT(IF(ISEMPTY(A2:E2);0;A2:E2-A1:E1*50))
KJz6qUV.png


The answer should be 1,5*50-60=-15 and then ignoring C1.

And indeed thats what it says in insert formula window:
QdJeglN.png



Any ideas?
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Did you array enter the formula using Ctrl+Shift+Enter rather than just Enter?
 
Upvote 0
Hi, welcome to the forum!

You can't use a IF() statement like that without also requiring the formula to be committed with CSE.

You could try like this instead:

=SUMPRODUCT(1-(ISEMPTY(A2:E2));A2:E2-A1:E1*50)
 
Last edited:
Upvote 0
ISEMPTY is a VBA function so isn't going to work on a sheet. You want something like:

=SUMPRODUCT(A2:E2-((A2:E2<>"")*A1:E1*50))
 
Upvote 0
Re: SUMPRODUCT working in argument window, but returns error in cell [Solved]

Did you array enter the formula using Ctrl+Shift+Enter rather than just Enter?
This worked, completely forgot that it is needed in some cases, thanks!
 
Upvote 0
Hi, welcome to the forum!

You can't use a IF() statement like that without also requiring the formula to be committed with CSE.

You could try like this instead:

=SUMPRODUCT(1-(ISEMPTY(A2:E2));A2:E2-A1:E1*50)
This worked as well without the need of ctrl + shift + enter. Think I'll go with this one! :)


Thanks a lot for all the quick answers!
(just realized I answered all you guys in separate posts, but couldn't find the edit button so couldn't change it to 1 post)
 
Upvote 0

Forum statistics

Threads
1,223,892
Messages
6,175,236
Members
452,621
Latest member
Laura_PinksBTHFT

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