Count expression SSRS Report

前端 未结 3 689
花落未央
花落未央 2021-02-05 08:32

Trying to count all rows in a column where column=Yes I have two columns in my report Accepted and rejected.

I\'m trying to count the rows where accepted=Ye

3条回答
  •  孤街浪徒
    2021-02-05 08:59

    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))
    

提交回复
热议问题