I want to have a formula that calculates the sum of a given range.
Say I have 1,5
in cell A1
. I want a formula to calculate 1+2+3+4+5
.
And maybe in a more advanced fashion, I would like to enter 1,5;6,3;1,4;...
and have it calculate (1+2+3+4+5)+(6+5+4+3)+(1+2+3+4)
.
There won't be any negative numbers.
Is this somehow possible in Excel? For the range 6,3
, it's probably easiest to get the lower number and count up to 6.