简体   繁体   中英

How to filter tablix rows based on boolean report parameter in ssrs

NetWtGreaterThan0是报告参数(布尔值)

净重量差异计算列

Here NetWtGreaterThan0 is a boolean report parameter. If value of NetWtGreaterThan0 is true than i want to show rows with Net Wt. Difference>0.000. Here Net Wt. Difference is calculated column.

Give this a try.

In the Row Visibility, Show / Hide based on expression.

=IIF(Parameters!NetWtGreaterThan0.Value = False, False, IIF(Net Wt. Difference>0.000, False, True))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM