Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, how can I achieve following formula in qlikview that works in excel.
(x)^(1/6)
which is 6th root of x where x is any integer. for eg. if x is 64 then x^(1/6) gives 2.
Thanks
Lax
Hello,
check the pow(x, 1/6) function.
Hope this helps.
Hi Laxmikant,
Pow(64,1/6) gives you 2.
Thanks SALTO.
Regards,
Vijay
Hi,
Try Pow() like this
=Pow(x, 1/6)
=pow(64, 1/6) -- will return 2
Regards,
Jagan.
thanks