Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
I want to divide som values but I cant find the correct expression .
I have a table witch some coloms
sum(a)
4471
sum(b)
5572
sum(c)
925
I want to make an expression
sum(a)/(sum(b)-sum(c))
4471/(5572-925) =0,926
but i Qlikview outcome 0,73
Thanks in advance
Hi,
Use this:
=Div (sum(a), (sum(b) - sum(c)))
LET vDiff= Sum(b)-Sum(c);
then do this,
sum(a)/$(vDiff)
hope it helps
Thank you!
Thank you! It works
hi
your expression is absolutely write i don't know why it didn't give you correct answer..
sum(a)/(Sum(b)-Sum(c))
see the attached file