Report column is showing #Error when using Subscriptions

67 Views Asked by At

As titled, when using SSRS 2017 subscriptions to generate a report, a column with expression is showing #Error. However, when I try to run manual in web and in the report builder, it can be shown.

The Expression is: =Code.Decode(Fields!Comments.Value)

The function is:

Function Decode(ByVal EncodedString AS String) AS String

    Return System.Web.HttpUtility.HTMLDecode(EncodedString)

End Function

Any suggestion or help will be welcome.

1

There are 1 best solutions below

0
On BEST ANSWER

I resolve the problem by myself. Use the following method instead

Function Decode(ByVal EncodedString AS String) AS String
   Return System.Net.WebUtility.HtmlDecode(EncodedString)
End Function