Reporting Services 2008 R2 Tablix Go to URL Action . . . I have the following expression . . .
="mailto:" & "email" & "?subject=" & "My Email Subject" & Fields!ReferenceNo.Value & "-" & Fields!ShortName.Value & "&body=" & "Hi," + vbcrlf + vbcrlf + "My Body Message" & Fields!ReferenceNo.Value & " - " & Fields!ShortName.Value & " " & "needs commentary." & vbcrlf & vbcrlf & "I'll be checking this later!" & vbcrlf & vbcrlf & System.Uri.EscapeDataString(""
which displays and opens an email message fine . . . however . . . replacing the "email" with Fields!Name.Value seems to make the action stop working. Any ideas?