Sum values from multiple rows using vlookup or index/match functions

前端 未结 2 1264
清歌不尽
清歌不尽 2020-12-30 09:24

I want to sum the values in columns B, C, and D using a formula. I tried combining SUMIF, VLOOKUP and INDEX with MATCH bu

相关标签:
2条回答
  • 2020-12-30 09:39

    You should use Ctrl+shift+enter when using the =SUM(VLOOKUP(A9,A1:D5,{2,3,4,},FALSE)) that results in {=SUM(VLOOKUP(A9,A1:D5,{2,3,4,},FALSE))} en also works.

    0 讨论(0)
  • 2020-12-30 09:54
    =SUMPRODUCT((A1:A5="FRANCE")*B1:D5)
    
    0 讨论(0)
提交回复
热议问题