SSRS Remove hyperlink in excel export?

IIf(Globals!RenderFormat.Name = "EXCEL", Nothing, "YourReportNAME")

OR you could also use the .IsInteractive property, which will disable the links for PDF exports as well:

IIf(Globals!RenderFormat.IsInteractive, "YourReportNAME", Nothing)

Leave a comment