I want to create a link in a condition in reporting services. i have something like
iif(SomeField = "Canceled",SomeFiled,SomeField & 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?