FinanceGuy007

New Member
Joined
Sep 20, 2017
Messages
6
Hi Guys,

I have used SUMIFS many times before without any issues but cant seem to understand why it is errors out (#VALUE! error) in the following formula. All my ranges are the same size, Column K is TEXT format although not sure why this would have any impact. Column O is also in TEXT format. I have tried modifying the formula to a single criteria SUM to inspect the components and it seems fine. when i use the SUMIFS it doesn't seem to like it:

Code:
=SUMIFS($C$12:$C$1000,$O13,D$12:D$1000,K12:K1000,$O$10)
I tried to paste a screenshot but it will not allow me to. hopefully the problem formula below is enough?

Appreciate any help!
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
SUMIFS syntax:

SUMIFS(sum_range, criteria_range1, criteria1, criteria_range2, criteria2)
 
Last edited:
Upvote 0
You don't seem to have a sum range, i.e. a range to sum that SUMIFS expects. If D2:D1000 is meant to be summed, try...

=SUMIFS(D$12:D$1000,$C$12:$C$1000,$O13,$K$12:$K$1000,$O$10)
 
Upvote 0
You don't seem to have a sum range, i.e. a range to sum that SUMIFS expects. If D2:D1000 is meant to be summed, try...

=SUMIFS(D$12:D$1000,$C$12:$C$1000,$O13,$K$12:$K$1000,$O$10)

Thanks Aladin! Glaringly obvious and yet I couldn't see after starting it at for close to 30 minutes it till you pointed it out. Duh moment!

best
FG
 
Upvote 0

Forum statistics

Threads
1,221,527
Messages
6,160,342
Members
451,638
Latest member
MyFlower

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