Hi guys hoping someone may be able to help make my calculation more efficient , if possible.
Its for a soccer league ,
this one looks at the club entries by name from individual B18 and adds up the points for the club selected ( in column C18:F18 on Entries_by_Name sheet) from the sheet All_Footaball_Tables ( points are in the table in column 8)
We have 4 English leagues Premiership, Championship, Lg1 & Lg2
This one is used in the Leaderboard to calculate the monthly ( column 14) leader
Any help appreciated
Its for a soccer league ,
this one looks at the club entries by name from individual B18 and adds up the points for the club selected ( in column C18:F18 on Entries_by_Name sheet) from the sheet All_Footaball_Tables ( points are in the table in column 8)
=IF($B18="","",SUM(VLOOKUP(Entries_by_Name!C18,All_Football_Tables!$C$3:$N$22,8,FALSE)+VLOOKUP(Entries_by_Name!D18,All_Football_Tables!$C$3:$N$22,8,FALSE)+VLOOKUP(Entries_by_Name!E18,All_Football_Tables!$C$3:$N$22,8,FALSE)+VLOOKUP(Entries_by_Name!F18,All_Football_Tables!$C$3:$N$22,8,FALSE)))
We have 4 English leagues Premiership, Championship, Lg1 & Lg2
This one is used in the Leaderboard to calculate the monthly ( column 14) leader
=IF(Leaderboard!$B91="","",SUM(VLOOKUP(Entries_by_Name!$C91,All_Football_Tables!$C$3:$Y$22,14,FALSE)+VLOOKUP(Entries_by_Name!$D91,All_Football_Tables!$C$3:$Y$22,14,FALSE)+VLOOKUP(Entries_by_Name!$E91,All_Football_Tables!$C$3:$Y$22,14,FALSE)+VLOOKUP(Entries_by_Name!$F91,All_Football_Tables!$C$3:$Y$22,14,FALSE)+VLOOKUP(Entries_by_Name!$G91,All_Football_Tables!$C$25:$Y$48,14,FALSE)+VLOOKUP(Entries_by_Name!$H91,All_Football_Tables!$C$25:$Y$48,14,FALSE)+VLOOKUP(Entries_by_Name!$I91,All_Football_Tables!$C$25:$Y$48,14,FALSE)+VLOOKUP(Entries_by_Name!$J91,All_Football_Tables!$C$25:$Y$48,14,FALSE)+VLOOKUP(Entries_by_Name!$K91,All_Football_Tables!$C$52:$Y$75,14,FALSE)+VLOOKUP(Entries_by_Name!$L91,All_Football_Tables!$C$52:$Y$75,14,FALSE)+VLOOKUP(Entries_by_Name!$M91,All_Football_Tables!$C$52:$Y$75,14,FALSE)+VLOOKUP(Entries_by_Name!$N91,All_Football_Tables!$C$78:$Y$101,14,FALSE)+VLOOKUP(Entries_by_Name!$O91,All_Football_Tables!$C$78:$Y$101,14,FALSE)+VLOOKUP(Entries_by_Name!$P91,All_Football_Tables!$C$78:$Y$101,14,FALSE)))
Any help appreciated