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
=SUM(IIf(Fields!Doc_Type.Value = "Shipments", 1, 0), "YourDataSetName")
this worked for me with no errors. saw this on another post.