I needed to add a link in a new SSRS report and the link has to open in a new browser's window.
Just Right click on your report field, select "Text Box Properties", select "Action", click on the "FX" sign to write that special expression.
="javascript:void(window.open('" + Fields!URL.Value + "','_blank'))"
Assuming that your URL is dynamic and the column name is "URL" in your dataset
SSRS Link in new Browser's Window |
Hope that helps...