nancybrown

Well-known Member
Joined
Apr 7, 2005
Messages
868
I have two files that I need to compare against each other. My K4C file has 866 rows that consists of individual grant applications, My GO file has approximately 463 rows of consolidated grant requests. What happens in this process is individuals apply for grants to organizations based on tax id and zip code; the second system that generates payments is consolidating the single applications into a large one based solely on the tax ID. Because of this, one large check is being issued instead of individual checks. So I need to compare the individual IDs against the consolidated ones so I can break out the consolidated items into individual checks instead of one large one going to the wrong location.

So in short, I need to sum column B1:B866 from the K4C file if the K4C A1:866 fields match the GO D1:463 fields

I'm using this sumif statement but all I'm getting are $0.00.

K4C fields: (Tax ID & Zip) A1:A866; (Amount) B1:B866)
GO fields: (Tax ID & Zip) D1:D463

=sumif(K4C B1:B866, A1,GO D1:D463)

Can anyone help please?
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Re: Sumif help please

try

=sumif(K4C!B1:B866, "="&A1,GO!D1:D463)
 
Upvote 0

Forum statistics

Threads
1,214,863
Messages
6,121,978
Members
449,058
Latest member
oculus

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