I do not know vb. How can I turn the below idea into VB.NET and embed in a table object in RS?
IF Fields!someField.Value LIKE "%string%" THEN Fields!someField.Value
.. the goal is to only include values that contain the string, and exclude all other values from the table.
TYIA...You can try some filtering on the Table - right click on table - filters - add the field with a Like filter.|||
Yes, you should filter on the table.
Note: Like filters work with * instead of %. E.g. ="abc*"
-- Robert
No comments:
Post a Comment