Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
good day,
my fields are:
Traffic In
Tseq No
I want to compute for the conversion
Count(distinct [Tseq No])/Sum([Traffic In])
how can I disregard Tseq No that has corresponding Traffic In value equivalent to zero in the computation?
thank you.
Go to Add ons -> Data Handling->Uncheck Include Zero Values
its not working
i need to remove "Transaction count" with corresponding zero "Traffic In" in the formula.
can you share the sample file please.
here
Add an if condition on all the expressions like:
=if(sum(traffic)>0,Sum(transactions))
if(sum(traffic)>0,Sum([Ave price]))
and so on.. This should fix the issue
Count(distinct [Tseq No])/Sum([Traffic In])
*Tseq No is transactions
*Traffic In is traffic
how can i remove transaction count with corresponding zero traffic in the formula above.
there are dates that has transactions but no traffic count.
Use this:
if(sum(traffic)>0,Count(distinct transactions)/Sum(traffic))
not working 😞