SQL Reporting Services Boolean Parameter (True/False/All(?))
问题 I have a SSRS report that works with boolean parameter. I would like to add a third option to show all the records on the report. Both true and false. The concept is that the dropdown will include three options (All,True,False). Is there a way to acheive that? Thanks, -Y 回答1: Set the dataset filter to something like this: I have 3 available values for @parmTRUEFALSE False = False True = True All Records = (Null) =IIF(IsNothing(Parameters!parmTRUEFALSE.Value), ObjectFieldName.Value, Parameters