Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello.
I'm trying to find the way to calculate the column multiplication
As I understand I need a function such as Sum but It shuld multiply operands instead of sum them.
Alek ,
It seems that you want the iteratin here .
Can you give the sample of your doc.
Hi Aleksander
you can use sum(X1 * X2 * Xn)
the expression will perform first (X1 * X2 * Xn) then sum the result along the dimensions
best regards
Chris
Here is an example: I have a dataset: 1, 2, 4, 5 and I should get 1 * 2 * 4 * 5 = 40
what do you mean by "multiply operands instead of sum them."
Can you please send us a sample file or sample data.
Thanks,
Angad
I have found a work around:
=$(=Concat(F1,'*'))
PFA
Hi
Please Try "fact(Max(F1))"
Kind Regards,
Footsie
coool tresesco Loved the work around
It's not working on "BIG" data
You can do it like
= Exp(Sum(Log( F1 )))
F1 being your field name