SUMPRODUCT #VALUE! error

amyylouise

New Member
Joined
Sep 3, 2013
Messages
22
I can't figure out why I'm getting this error only on this one row. All my other formulas on the Revenue Summary sheet work fine.

{=SUMPRODUCT((MONTH(InventoryTracking[Date Sold])='Revenue Summary'!M2)*(InventoryTracking[Sale Price (Before Tax)]))} **no problems with this one**

{=SUMPRODUCT((MONTH(InventoryTracking[Date Sold])='Revenue Summary'!M2)*(InventoryTracking[Profit Received (Tax Excluded)]))} **comes up with #VALUE ! error**

Here's the link to my workbook: https://1drv.ms/x/s!AnG6B6etKkxDgr13YBrU3stJGK1ODA

Help please!

TIA!
 

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)
You have formulas in the Tax Excluded column, some of which are returning "".
"" is NOT actually BLANK. It's an empty text string.
Number*Text=#Value!

Your Before Tax column doesn't contain formulas like that.


FYI, these formulas do not need to be entered as an array.
 
Upvote 0
You have formulas in the Tax Excluded column, some of which are returning "".
"" is NOT actually BLANK. It's an empty text string.
Number*Text=#Value!

Your Before Tax column doesn't contain formulas like that.


FYI, these formulas do not need to be entered as an array.

OMG thank you so much! This has been driving me crazy all morning!
 
Upvote 0
Maybe...

=SUMPRODUCT(--(MONTH(InventoryTracking[Date Sold])='Revenue Summary'!M2),(InventoryTracking[Profit Received (Tax Excluded)]))

confirmed with just Enter

M.
 
Upvote 0
B3, copied down:

=SUMPRODUCT(INDEX(InventoryTracking,0,MATCH($A3,InventoryTracking[#Headers],0)),(TEXT(InventoryTracking[Purchase Date],"mmm")=B$1)+0)
 
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,780
Members
449,049
Latest member
greyangel23

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