I am trying to set 2 hidden conditions on a row that will show alternate numbered rows (all even #), and also hide any rows that have an answer of '0' or "".
I have tried various variations of the IIF statement. Can someone please help me with getting this to display correctly?
=IIF((rownumber(nothing) mod 2)=0, false, true) And IIF(Fields!PrimaryAnswer.Value <> ""OR (Fields!PrimaryAnswer.Value <> "0"), false, true)
(this does not give me either condition I am looking for)