Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
Im trying to add a second criteria to the count below with no success. I need to count reviewid which errorcode <>Yes and critical=Yes.
(Count({<reviewId={"=errorCode<>YES"}>}distinct [reviewId]))
{"=critical=YES"}
Thank you.
I believe this is what you are trying to do.
Count({<errorCode-={'YES'},critical={'YES'} >}distinct [reviewId])
I believe this is what you are trying to do.
Count({<errorCode-={'YES'},critical={'YES'} >}distinct [reviewId])
Thank you. It worked well.