There must be a way in SSRS to have multiple conditionals for separate data filters? I have an input report level filter @reportparameter, and data item "Checknum" I need to do something resembling the following:
if @reportparameter = "C" and Left(Fields!Checknum,2) = "NC", filter
otherwise
if @reportparameter = "E" and Left(Fields!Checknum,2) = "VR", then filter
two separate conditionals, both compound statements.
What does the SSRS Dataset look like, as far as syntax?
