i'm trying to pull a sum of each column from all 13 sheets onto a summary sheet using a combination of sum and vlookup.
f(x): =SUM(VLOOKUP($A3,'Jan 16'!$A:B,2,0))+(VLOOKUP($A3,'Feb 16'!$A:B,2,0))+(VLOOKUP($A3,'Mar 16'!$A:B,2,0))+(VLOOKUP($A3,'Apr 16'!$A:B,2,0))+(VLOOKUP($A3,'May 16'!$A:B,2,0))+(VLOOKUP($A3,'Jun 16'!$A:B,2,0))+(VLOOKUP($A3,'Jul 16'!$A:B,2,0))+(VLOOKUP($A3,'Aug 16'!$A:B,2,0))+(VLOOKUP($A3,'Sep 16'!$A:B,2,0))+(VLOOKUP($A3,'Oct 16'!$A:B,2,0))+(VLOOKUP($A3,'Nov 16'!$A:B,2,0))+(VLOOKUP($A3,'Dec 16'!$A:B,2,0))+(VLOOKUP($A3,'Jan 17'!$A:B,2,0))
however my lookup value isn't available on all sheets, easier said: the text value in column a may only exist on 1 to 12 of the 13 sheets, which returns with #N/A since i'm trying to return a sum value of all 13 sheets.
i feel like i'm going about this in a very caveman fashion but someone once told me don't be afraid to be a beginner. any help you can provide would be greatly appreciated.
f(x): =SUM(VLOOKUP($A3,'Jan 16'!$A:B,2,0))+(VLOOKUP($A3,'Feb 16'!$A:B,2,0))+(VLOOKUP($A3,'Mar 16'!$A:B,2,0))+(VLOOKUP($A3,'Apr 16'!$A:B,2,0))+(VLOOKUP($A3,'May 16'!$A:B,2,0))+(VLOOKUP($A3,'Jun 16'!$A:B,2,0))+(VLOOKUP($A3,'Jul 16'!$A:B,2,0))+(VLOOKUP($A3,'Aug 16'!$A:B,2,0))+(VLOOKUP($A3,'Sep 16'!$A:B,2,0))+(VLOOKUP($A3,'Oct 16'!$A:B,2,0))+(VLOOKUP($A3,'Nov 16'!$A:B,2,0))+(VLOOKUP($A3,'Dec 16'!$A:B,2,0))+(VLOOKUP($A3,'Jan 17'!$A:B,2,0))
however my lookup value isn't available on all sheets, easier said: the text value in column a may only exist on 1 to 12 of the 13 sheets, which returns with #N/A since i'm trying to return a sum value of all 13 sheets.
i feel like i'm going about this in a very caveman fashion but someone once told me don't be afraid to be a beginner. any help you can provide would be greatly appreciated.