Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Hi,
how to exclude Zero value on an Expression?
You didn't tell what expression. for the generic question, I can give a generic answer:
<an aggregation function> ({<Value-={0}>} Value)
Hi,
below is my expression
if(Count(CustomerCodeName)>0,sum(aggr(count(DISTINCT SalesmanDate),CustomerCodeName,SalesmanDate)))
This is better
Try this, it will work unless I miscounted the parenthesis:
sum(if(
aggr(count(DISTINCT SalesmanDate),CustomerCodeName,SalesmanDate)>0,
aggr(count(DISTINCT SalesmanDate),CustomerCodeName,SalesmanDate)
))