Report Builder 3.0
SQL 2012 / SSRS
Hello everyone, new to the SQL forum, so hopefully im in the right place here. :-)
I am creating a report with RP 3, and am trying to place a Field Value in a URL, which is on a text box in a Tablix on the report. The link I am sending it to, will allow me to lookup an account in our CRM web application. So basically, I would like to grab the vaule the user is clicking on in the report, and pass it to the URL. An example of the URL is as follows:
https://MYCRMAPP/docs/CRMAccountCard.aspx?ID=%<<MY ACCOUNT NUMBER HERE>>%7d
...Where <<MY ACCOUNT NUMBER HERE>> is the account number I would like to grab, so a user can click on the field and have it send to IE for lookup. I have tried the following, by right-clicking on the TextBox in the Tablix, and going to 'Text Box Properties->Action->Go to URL' then hitting the 'fx' for making an expresstion. None of these seem to work, and place the account number in question in that field -- It instead takes the literal text, rather than the value.
https://MYCRMAPP/docs/CRMAccountCard.aspx?ID=%7b/Fields!Account.Value/%7d
https://MYCRMAPP/docs/CRMAccountCard.aspx?ID=%7b&Fields!Account.Value&%7d
"https://MYCRMAPP/docs/CRMAccountCard.aspx?ID=%7b"&Fields!Account.Value&"%7d"
Has anyone had luck with this, or can tell me what I'm doing incorrect? Thanks a bunch!
-Rich