Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 SSRS Visibility Expression Error

Author  Topic 

Alan1018
Starting Member

13 Posts

Posted - 2014-06-25 : 15:51:00
I am trying to set a text box visibility based on four (4) things
Class = "CLSCV" or Class = "SVC" or field 1 >+ 0 or Field 2 <= 0

This is the actual expression:

=(Sum(Fields!ChgAmt.Value, "Sema4Time")>0) Or (Sum(Fields!ContractDollars_Total.Value, "DataSet4")<=0) Or (First(Fields!Class.Value, "DataSet1") <> "CLSVC") Or (First(Fields!Class.Value, "DataSet1") <> "SVC")

I want the field hidden unless the class is "CLSVC" or "SVC" or
Sema4 time > 0 or ContractDollars <= 0

Thanks,
Alan
   

- Advertisement -