Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
For example, I want to count field C where A='X' AND B='Y'.
count({$<AExitState={Dropped}>}ACallDate)
Thank you,
Sarah
Sarah,
If you prefer set analysis - use intersection (*): <condition A>*<condition B>.
Without set analysis, it will be if(<condition A> AND <condition B>, ...)
Hi,
using set analysis, I think you could also write
count({$<A={X}, B={Y}>} C)
i dont know if there's a difference with intersection operator as suggested by Michael, though ...
Hilaire
Thank you for your feedback! I ended up using:
count({$<A={'X'},B={'Y'}>}C)