Paul Naylor
Board Regular
- Joined
- Sep 2, 2016
- Messages
- 99
- Office Version
- 365
- 2003 or older
- Platform
- Windows
- Mobile
- Web
Hi All, Hoping someone can help.
I.ve got a s/sheet with names and stats on for multiple people across each weekday Sun-Sat, trying to add the values up but when using sumif & Vlookup it only finds 1st entry and tried sumproduct and get a name error , see below formulas:
=SUM(IFERROR(VLOOKUP($B4,Sunday!$A$2:$BO$50,{5},FALSE),IFERROR(VLOOKUP($B4,Monday!$A$2:$BO$50,{5},FALSE),IFERROR(VLOOKUP($B4,Tuesday!$A$2:$BO$50,{5},FALSE),IFERROR(VLOOKUP($B4,Wednesday!$A$2:$BO$50,{5},FALSE),IFERROR(VLOOKUP($B4,Thursday!$A$2:$BO$50,{5},FALSE),IFERROR(VLOOKUP($B4,Friday!$A$2:$BO$50,{5},FALSE),IFERROR(VLOOKUP($B4,Saturday!$A$2:$BO$50,{5},FALSE),""))))))))
column B is names and wanting to sum all column 5 for given name and ignore any non occurances ( all people are not in every day
=SUMPRODUCT(SUMIF(INDIRECT("'"&Days&"'!A3:A99"),$B3,INDIRECT("'"&Days&"'!E3:E99")))
Helper column A with days of the week which coincide with the worksheets , column B is list of the names which I want to look up against which appear in column A on the daily sheets
Not sure where im going wrong ?
I.ve got a s/sheet with names and stats on for multiple people across each weekday Sun-Sat, trying to add the values up but when using sumif & Vlookup it only finds 1st entry and tried sumproduct and get a name error , see below formulas:
=SUM(IFERROR(VLOOKUP($B4,Sunday!$A$2:$BO$50,{5},FALSE),IFERROR(VLOOKUP($B4,Monday!$A$2:$BO$50,{5},FALSE),IFERROR(VLOOKUP($B4,Tuesday!$A$2:$BO$50,{5},FALSE),IFERROR(VLOOKUP($B4,Wednesday!$A$2:$BO$50,{5},FALSE),IFERROR(VLOOKUP($B4,Thursday!$A$2:$BO$50,{5},FALSE),IFERROR(VLOOKUP($B4,Friday!$A$2:$BO$50,{5},FALSE),IFERROR(VLOOKUP($B4,Saturday!$A$2:$BO$50,{5},FALSE),""))))))))
column B is names and wanting to sum all column 5 for given name and ignore any non occurances ( all people are not in every day
=SUMPRODUCT(SUMIF(INDIRECT("'"&Days&"'!A3:A99"),$B3,INDIRECT("'"&Days&"'!E3:E99")))
Helper column A with days of the week which coincide with the worksheets , column B is list of the names which I want to look up against which appear in column A on the daily sheets
Not sure where im going wrong ?