Our new ERP system uses SSRS for its reports. On one of those reports, we want to hide a field based on whether or not an item begins with a certain set of characters.
These items all start with 9UM.
I've tried to hide the Part Description by going to the visibility option in the text box properties and setting up an expression. That expression is:
=Fields!PartNum.Value <> "9UM%"
From my understanding, this expression should hide all descriptions except for items starting with 9UM. It's not working that way.
Can anyone help me figure out what the expression has to be to hide the description field?