SUMPRODUCT to get row +1
问题 I have a table like below: 12/7/2012 A B 100 12/21/2012 A I 20 12/23/2012 A I 25 12/1/2013 A I 20 12/1/2014 A I 20 I want to get the value in column D where column B is "A" and column C is "I". I used a sumproduct to get the value in column D, but I need to go down 1 row from wherever column B is "A" and column C is "I". This is my formula: =SUMPRODUCT(--(B:B="A"),--(C:C="I"),F:F+1). It should return a value of 85, but it returns a value of 4. 回答1: You could use =SUM((B1:B10="A")*(C1:C10="I")