I am trying to hide all rows in SSRS except for where the buyer field = 'FCF'. I am using multiple datasets in this report so I use the below expression to try and hide/show the data:
=Lookup(TRIM(Fields!PRODUCT_CODE.Value),
TRIM(Fields!item.Value), Fields!buyer.Value, "Visual") = "FCF"
This expression goes into the visibility section(right click row>Row Visibility>Show or hide based on an expression). When I run the report with this enabled it will not return any values at all even though it should return multiple rows of data. Below is an example of on the output I get when I remove the expression from the report:
Slot Item Item Description Qty UOM Exp Date Buyer
35863A 32052 FCF BROCCOLI SALAD KIT 2.125# 3 CS 12/28/2017 FCF
Buyer
in your Tablix/Matrix? – Larnu