Question

How to use OR in IIF statement in SSRS

=IIF((Fields!txtCurrentSubjectReportName.Value="",
      Fields!txtSubjectArchivedName.Value,
      Fields!txtCurrentSubjectReportName.Value) = "School Life" 
      OR 
      "My goal for this term..." 
      OR 
      "Student Reflective Comment", True, False)

Its throwing error

Was it helpful?

Solution

=IIF(Fields!txtCurrentSubjectReportName.Value="",
     Fields!txtSubjectArchivedName.Value,
     Fields!txtCurrentSubjectReportName.Value) = "School Life" 
 OR 
 IIF(Fields!txtCurrentSubjectReportName.Value="",
     Fields!txtSubjectArchivedName.Value,
     Fields!txtCurrentSubjectReportName.Value) = "My goal for this term..." 
 OR 
 IIF(Fields!txtCurrentSubjectReportName.Value="",
     Fields!txtSubjectArchivedName.Value,
     Fields!txtCurrentSubjectReportName.Value) = "Student Reflective Comment"

The result is boolean itself and does not need in additional IIF().

Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top