开发者

How to create a link in an iif condition in reporting services

开发者 https://www.devze.com 2022-12-13 14:02 出处:网络
I want to create a link in a condition in reporting services. i have something like iif(SomeField = \"Canceled\",SomeFiled,SomeFi开发者_运维百科eld & link)

I want to create a link in a condition in reporting services. i have something like

iif(SomeField = "Canceled",SomeFiled,SomeFi开发者_运维百科eld & link)

So the output would be:

Completed

Download Report (with link to report)

But if i put html code like:

<a href="somelink">Somelink</a>

It just spits out the html code, and no link is created.

So, how do i make a link?


The text box has properties that can be used to control this (called different things in each version).

Anyhow, the URL etc are properties that can be an expression that takes IIF.

  • SSRS 2008 "Go to URL"
  • SSRS 2005 "Jump to URL"
  • SSRS 2000 "Jump to URL":

You should be able to make it open in a new window: I've done it before but can't look at what I did just now.


How to create a hyperlink in Reporting Services that opens in a new window I was at a client and the question came up "Can I jump to another web based tool from my report?". The answer seemed obvious ... YES. What was not straightfoward was how to open the other web based tool in another window. Here is a solution a found (someone else's idea) that helped.

When designing the report:

Open up a text box properties window Go to Navigation Enable Jump to URL In the URL enter javascript:void(window.open( 'http://www.microsoft.com', '_blank')

Mike brown's blog not mine.

0

精彩评论

暂无评论...
验证码 换一张
取 消