• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Sigma Function

sklittles10

New Member
I can not find anywhere on the internet a way to do a simple sigma summation in excel.

edene

Not as complex as the equation above, but a simple multiplication:

rvrr 50*n

$50 late fee that is assessed again in each subsequent month the monthly payment isn't not paid.

n=1 I = 50*1 =50
n=2 II = 50*2 =100
n=3 III = 50*3 =150
n=4 IIII = 50*4 =200

crecec
where n is 1 is 50. 50
where n is 2 is 150. 50+100
where n is 3 is 300. 50+100+150
where n is 4 is 500. 50+100+150+200
where n is 5 is 750. 50+100+150+200+250
 

sklittles10

Screenshot 2024-07-30 at 17.43.33.png
Did You skip below ...
Post an Excel related Challenge for others to Solve (You must have a solution) Don't post questions here!
This Your thread has moved.
 
The values you show would be returned by the 365 formula
Code:
= SCAN(0, 50*SEQUENCE(n), LAMBDA(acc,k, acc+k))

or, in future,

= SCAN(0, 50*SEQUENCE(n), SUM)
 
Or this (where A1 contains your n number):

=SCAN(0,SEQUENCE(A1,,50,0),LAMBDA(x,y,x+y))
 
Back
Top