Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
HOw can we multiply field values in one column in Qlikview expression
example
Expected o/p is the product of all numerators: 34*67*86
ID | Numerator | Expected O/P |
13435 | 34 | 195908 |
4646 | 67 | 195908 |
6337 | 86 | 195908 |
Thanks in Advance
Try this
=exp(Sum(log(Numerator)))
Thanks sum this helped.
One more thing
How do i get (34*64*87) power 1/ count(Numerator)
This
=Pow(exp(Sum(log(Numerator))), (1/Count(Numerator)))
Please find the attached screen shot i want to multiply all the values in second row
I am not seeing infinity for either of the expressions I mentioned above
Are you sure you are using the expression correctly?
This is the expression i am using
If you export this chart into Excel and perform this multiplication in Excel, are you able to see a result? My guess is that you have a lot of rows and multiplication can very quickly become a very very big number... a number which QlikView (or even Excel) may not be able to display.
But this is just my theory, let's see what other experts have to say about this