Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am having trouble creating a count if and expression in my analysis.
I am looking to get the count if Field1 if Field2 = Yes, and Filed3 = 4
=Count(if(Field2='Yes',and(Field3=4))Field1)
Maybe
=Count( if(Field2='Yes' and Field3=4 , Field1))
Hi,
Your expression is wrong.
Try this:
=Count(if(Field2='Yes' and Field3=4,Field1))
That worked.. thank you