I am attempting to count the number of values where the Previous Year Comp is greater than 0. I found examples on StackOverflow but nothing is giving me the count I want.
I have the following expression:
= IIF((Fields!Previous_Year_Comp.Value) > "0.00",
count(Fields!Previous_Year_Comp.Value),0)
This expression is counting the 0 values. Keep in mind that this expression has undergone several modifications. What am I missing?