
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-15-2015 05:29 AM
Hi Support,
Just wondering if it is possible to build a working http link as a report data field - similar to the automatic URL creation for some fields such as assetid, ip location etc.
We are creating a report and would like to then place a link in one of the columns that uses the IP address of the row. ie: 'http://' + IPAddress
But presently it just returns as a text field only.
Many thanks,
Just wondering if it is possible to build a working http link as a report data field - similar to the automatic URL creation for some fields such as assetid, ip location etc.
We are creating a report and would like to then place a link in one of the columns that uses the IP address of the row. ie: 'http://' + IPAddress
But presently it just returns as a text field only.
Many thanks,
Solved! Go to Solution.
Labels:
- Labels:
-
General Discussion
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-15-2015 08:08 AM
In our latest versions this is possible by use of the following syntax:
Select Top 1000000 tblAssets.AssetName As hyperlink_name_AName,
'http://' + Cast(tblAssets.IPAddress As nvarchar) As hyperlink_AName
From tblAssets
Where 'AName' is the name you want to give to your column, 'hyperlink_AName' is the hyperlink itself, and hyperlink_name_AName is the columnvalue you want to show instead of the link.
Select Top 1000000 tblAssets.AssetName As hyperlink_name_AName,
'http://' + Cast(tblAssets.IPAddress As nvarchar) As hyperlink_AName
From tblAssets
Where 'AName' is the name you want to give to your column, 'hyperlink_AName' is the hyperlink itself, and hyperlink_name_AName is the columnvalue you want to show instead of the link.
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-15-2015 08:08 AM
In our latest versions this is possible by use of the following syntax:
Select Top 1000000 tblAssets.AssetName As hyperlink_name_AName,
'http://' + Cast(tblAssets.IPAddress As nvarchar) As hyperlink_AName
From tblAssets
Where 'AName' is the name you want to give to your column, 'hyperlink_AName' is the hyperlink itself, and hyperlink_name_AName is the columnvalue you want to show instead of the link.
Select Top 1000000 tblAssets.AssetName As hyperlink_name_AName,
'http://' + Cast(tblAssets.IPAddress As nvarchar) As hyperlink_AName
From tblAssets
Where 'AName' is the name you want to give to your column, 'hyperlink_AName' is the hyperlink itself, and hyperlink_name_AName is the columnvalue you want to show instead of the link.
