In SSRS 2008, I am trying to add a group expression based on the data containing the word "HOLD". Here is what I have currently.
=IIF(Fields!NOTE.Value.ToLowerInvariant().Contains("HOLD"), "Z-HOLD", Fields!DROPZONE.Value)
This is not working. Any ideas on what I have done wrong would be appreciated?