Hi,
I am trying to get a distinct count of records that have the value of "yes" in particular field. The field in particular can have a yes or no value. I tried to do distinctcount(fields!Comp.value) of records but it does not giving me the number of records with the "yes" value correctly.
I also tried =distinctcount(iif(fields!Comp.value ="yes",)
For example
RowID Comp
1 no
2 yes
3 no
4 yes
5 no
Yes Total 2
Any assistance is appreciated.