Sigma formula function in Numbers
Hi,
I am looking for a function for sigma formula working in Numbers. ex, "Sigma function" 2+5*(X-3), X=1,2,3,....n.
After searching, I found a combination of formula for Excel works:
=SUMPRODUCT(2+5*(ROW(INDIRECT("1:"&$A$1))-2))
But this formula doesn't work in Numbers. The reason seems the Numbers treat ROW function different to Excel, that is, if you insert ROW(INDIRECT("1:"&A1), Numbers returns only 1 but Excel returns a column of rows 1,2,3,....
How can I create a sigma formula working in Numbers? Thank you.