Ssrs 2008 用表达式隐藏SSRS中的某些数据

Ssrs 2008 用表达式隐藏SSRS中的某些数据,ssrs-2008,ssrs-expression,Ssrs 2008,Ssrs Expression,我试图使用SSRS中的行可见性表达式隐藏/抑制数据。 我现在有一个表达: =IIF(CInt(Fields!EM_ET.Value)=1 Or CInt(Fields!EM_ET.Value)= 2,True,False) 这隐藏了我不想显示的某些数据,但我想添加一个额外的字段来隐藏 我尝试使用以下内容添加附加值: =IIF(CInt(Fields!EM_ET.Value)=1 Or CInt(Fields!EM_ET.Value)= 2,True,False Or CInt(Fields!M

我试图使用SSRS中的行可见性表达式隐藏/抑制数据。 我现在有一个表达:

=IIF(CInt(Fields!EM_ET.Value)=1 Or CInt(Fields!EM_ET.Value)= 2,True,False)
这隐藏了我不想显示的某些数据,但我想添加一个额外的字段来隐藏

我尝试使用以下内容添加附加值:

=IIF(CInt(Fields!EM_ET.Value)=1 Or CInt(Fields!EM_ET.Value)= 2,True,False
Or CInt(Fields!MobileType.Value)<>1,True,False)
使用或和使其工作,两者都不起作用。有什么不对的建议吗?

试试这个:

=IIF(CInt(Fields!EM_ET.Value)=1 Or CInt(Fields!EM_ET.Value)= 2,True,IIF(CInt(Fields!MobileType.Value)<>1,True,False))

=IIF(CInt(Fields!EM_ET.Value)=1 Or CInt(Fields!EM_ET.Value)= 2 Or CInt(Fields!MobileType.Value)<>1,True,False)