
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-08-2015 10:46 AM
We created some customized reports and use the "hyperlink_hyp" & "hyperlink_name_hyp" in the Report to create the Links.
1.Can you create more then 1 Link per Report this way?
2. If your link is an internal link i.e to an IP-Location page it opens the link in a new tab. Can this be opened in the same window aswell
1.Can you create more then 1 Link per Report this way?
2. If your link is an internal link i.e to an IP-Location page it opens the link in a new tab. Can this be opened in the same window aswell
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-08-2015 01:42 PM
Multiple Hyperlinks can be added without issue. In "hyperlink_hyp" and "hyperlink_name_hyp" the last part "hyp" represents the column name. The example report below uses two hyperlinks. Hyperlinks will always be opened in a new tab.
Select Top 1000000 'Link 1 for ' + tblAssets.AssetName As hyperlink_name_Link1,
'http://www.example.com&Assetname=' + tblAssets.AssetName As hyperlink_Link1,
'Link 2 for ' + tblAssets.AssetName As hyperlink_name_Link2,
'http://www.secondexample.com&Assetname=' + tblAssets.AssetName As
hyperlink_Link2
From tblAssets
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-08-2015 03:45 PM
Works like a dream. Thanks

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-08-2015 01:42 PM
Multiple Hyperlinks can be added without issue. In "hyperlink_hyp" and "hyperlink_name_hyp" the last part "hyp" represents the column name. The example report below uses two hyperlinks. Hyperlinks will always be opened in a new tab.
Select Top 1000000 'Link 1 for ' + tblAssets.AssetName As hyperlink_name_Link1,
'http://www.example.com&Assetname=' + tblAssets.AssetName As hyperlink_Link1,
'Link 2 for ' + tblAssets.AssetName As hyperlink_name_Link2,
'http://www.secondexample.com&Assetname=' + tblAssets.AssetName As
hyperlink_Link2
From tblAssets
