Home > Mobile >  How to repeat a part of a formula in Excel?
How to repeat a part of a formula in Excel?

Time:07-15

I have the following formula =(((C3*B3%) (C4*B4%))*100)/C1: instead of repeat the part ((C3*B3%) (C4*B4%)) for every next cells (e.g: ((C3*B3%) (C4*B4%) (C5*B5%) (C6*B6%)) ), is there a way to write this for a range of indexes?

CodePudding user response:

=100*SUMPRODUCT(C3:C999999,B3:B999999%)/C1

  • Related