Trying to count all rows in a column where column=Yes I have two columns in my report Accepted and rejected.
column=Yes
I\'m trying to count the rows where accepted=Ye
You can try to use "And" Operators to check both conditions together.
=COUNT(IIF(Fields!accepted.Value ="Y" And Fields!rejected.value="Y",1,0))