all groups > sql server reporting services > may 2006 >
You're in the

sql server reporting services

group:

Remove hyperlink when exporting to Excel


Remove hyperlink when exporting to Excel Estella Kang
5/3/2006 11:07:51 AM
sql server reporting services:
How do I remove hyperlinks from reports that are exported to Excel?
Re:Remove hyperlink when exporting to Excel Tom DIson
5/25/2006 2:58:35 PM
Help, I have the same problem. I added actions to all my text fields to
allow me to filter the report when a user click a cell. I had no idea this
would totally ruine the report when exporting to Excel (each cell is now a
live hyperlink to the live report - FROM EXCEL!!) Te sheet has grown from a
couple hundred K to 22 MB!!! How can I have these textboxes revert to just
RE: Remove hyperlink when exporting to Excel ScottB
6/2/2006 8:27:02 AM
Essentially, you'll write an expression for:

Navigation:
=IIF (Parameters!render_format.value <> "html", nothing, "[report name]")

Text Decoration (to underline if a hyperlink):
=IIF(Parameters!render_format..Value = "HTML4.0","Underline","None")

Color:
=IIF(Parameters!render_format..Value = "HTML4.0","Blue","Black")

Scott


[quoted text, click to view]

AddThis Social Bookmark Button