1

enter image description hereDears,

I have a table that is grouped by Currency, and when i export to excel it splited into sheets based on Currency Grouping and each sheet has Currency Name.

enter image description here

i need to set Visibility Expression to last 2 columns to be hidden if the currency is USD.

ive tried

=IIF(Fields!Currency1.Value="USD",True,False)but all sheets are hidden

ive tried

=IIF(Globals!PageName="USD",True,False)it gave me error global variables can only be used in headers and footers.

also

=IIF(First(ReportItems!Claim_Currency.Value)="USD",True,False)also error.

can any one advise ,

Regards,

4

1 回答 1

0

而不是数据集字段值使用参数值来显示或隐藏。

例如:

=IIF(INSTR(Join(Parameters!Currency.Value,","),"USD")=0,True,False)

于 2013-03-22T13:29:19.560 回答