Maybe someone can help me with the following problem in basic Excel because Google is unable to. I have a column of numbers, for example A1:A10 and I need the following operation:
I need the multiplication of all numbers (like =Product(A1:A10)
) but I also need that each element before multiplication gets added by a constant 'c', for example 5.
So the column needs to be added with c and then all entries multiplicated.
I know you can just add the constant in the original column, but I need to do this for multiple values, so I don't want to copy my data constantly. Is there a formula which can do this? Something like =Product(A1:A10...+5)
.