Forum Discussion

jjelliott's avatar
jjelliott
Copper Contributor
Aug 11, 2022
Solved

Tallying totals for items in columns based on a value in column A (scorecard)

Greetings Excel community.    I am very much still learning and am a bit stuck on how to accomplish this.   I have values in column A of a spreadsheet, 1-15.  In columns B-K there are categories....
  • Patrick2788's avatar
    Aug 11, 2022

    jjelliott 

    There's a few ways to do it depending on your version. BTW, you may want to check your sample Tallies.  Tom is correct but the others are off.

     

    Non-365 solution (Ctrl+Shift+Enter array):

     

    =SUM((names=E6)*(ROW(names)))

     

    365:

     

    =REDUCE(0,names,LAMBDA(a,v,IF(v=E6:E8,a+ROW(v),a)))