Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
How would you convert underlying expression to set analysis?
=count(distinct if(Date2 - Today()>=7, ProductID, Null())) and ignore field name Date1= ??
Date1 = even if this field is being filter, it will have no effect on the formula.
Thanks in advance.
Hi,
Try with:
=count(distinct {<Date1>} if(Date2 - Today()>=7, ProductID, Null()))
Saludos
Hi,
Try with:
=count(distinct {<Date1>} if(Date2 - Today()>=7, ProductID, Null()))
Saludos
Or this
=Count(DISTINCT {<Date1, Date2 = {"$(='>=' & Date(Today() + 7))"}>} iProductID)
Thanks Sunny!
Thanks Federico