I apologize if this question is pretty straightforward and possibly common knowledge, but I’ve been trying to google it in as many permutations of the question as my brain can allow, and I have not seen a single straightforward answer to this. The only real reference of LibreOffice even having an actual summation (not sum) feature is in Math, which is strictly notation.
Let me kindly clarify my question: I am not asking whether there is a SUM function (that is definitely common knowledge); I am asking whether or not there is a SUMMATION function (i.e. sum [expression] from i=a to b) in Calc.
If there is, kindly refer me to the correct formula/documentation of the function. If not, well… bummer. I’m having trouble finding this function in Excel as well, but a colleague mentioned it did have this, which is called through ADDSUM() or something. I wouldn’t know; I’m a faithful user of Calc.
Edit: I suppose my question is still a little vague, or at least the details of what I’m trying to look for, so I’ll make an example with a hypothetical function I’ll call SUMM(). This function would receive 4 arguments, which is the same number of terms you need to input in the summation formula in Math.
Regarding the arguments. First, there would be the expression to be used, for example “5+6*i”, where i is the variable you’ll use to define your range. Second would be the letter you used in your expression, in this case “i”. The third and fourth arguments would receive the lower and upper bounds of the range of values of i, respectively.
The format of the hypothetical function would look something like SUMM(expression,variable,lower_bound,upper_bound). It could link to other cells for certain values or references of the expression, but can also calculate a value without any references, given you supplied it with the proper information.
I hope I made my question clearer.