I have two worksheets; I need to pull the "pounds shipped" for every day into worksheet two, which I obtain from worksheet one. The number is the sum of all the pounds shipped for all the orders that happen every day. I used this formula to get the correct answer:
=SUMIF('[Worksheet One]'!$C:$C, A2, '[Worksheet One]'!$AA$AA)
But because it's sumif and not sumproduct it won't update when worksheet one is closed. Column C is the date, A2 is the date on worksheet two, and column AA is the pounds shipped.
I've tried using a SUMPRODUCT( INDEX( SMALL( IF( ROW() - ROW(), ROWS())))) formula but either it doesn't work or I couldn't get the right format.
Any ideas? Thanks