SUMIFS formula block

Motherlode

New Member
Joined
Aug 12, 2011
Messages
2
I am trying to reference a cell in my sumifs formula and I'm getting odd results.

Here's what happens:
If I type the formula like this then it gives me the correct results and works fine:
=SUMIFS($N:$N,$AF:$AF,"Active",$K:$K,AK$4,$I:$I,"Budget",$N:$N,">1000")

The problem is that instead of typing in the 1000, I want it to point to another cell where I can type in different amounts and have the formula react accordingly. It doesn't. It returns a zero every time. Here's what my formula looks like that returns the zero regardless of what I type in my cell named "Amount":
=SUMIFS($N:$N,$AF:$AF,"active",$K:$K,AJ$4,$I:$I,"Budget",$N:$N,">Amount")

I also tried the more complicated variation and still get the zero:
=SUM(IF($AF:$AF="active",IF($K:$K=AI$4,IF($I:$I="Budget",IF($N:$N>Amount,0),0))))

Anyone know what I'm doing wrong? I don't want to hard code the 1000 into the formula, I want it to reference a cell that I can change when needed. Thanks in advance!
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Try

=SUMIFS($N:$N,$AF:$AF,"active",$K:$K,AJ$4,$I:$I,"Budget",$N:$N,">"&Amount)
 
Upvote 0
welcome to MrExcel board...

try this
Code:
=SUMIFS($N:$N,$AF:$AF,"active",$K:$K,AJ$4,$I:$I,"Budget",$N:$N,">" &Amount)
 
Upvote 0

Forum statistics

Threads
1,224,561
Messages
6,179,521
Members
452,923
Latest member
JackiG

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