I've got the following report for listing the battery replacement schedule for our server UPS batteries. The DisplayName column on the web interface is static, is there a way to make it a hyperlink, like other reports have? So I can jump to that UPS from the report page?
SELECT TOP 1000000 tblCustDevices.Displayname,
tblCustDevices.Serialnumber,
tblCustDevices.PurchaseDate,
tblCustDevices.Warrantydate AS [Battery Replacement Due],
CASE
WHEN tblCustDevices.Warrantydate < Getdate() + 90
AND tblCustDevices.Warrantydate > Getdate() THEN
'UPS Battery Due Soon'
WHEN tblCustDevices.Warrantydate < Getdate() THEN
'Replace-Replace-Replace'
WHEN tblCustDevices.Warrantydate > Getdate() THEN
'Battery-Current'
END AS [Battery Status],
tblCustDevices.Location
FROM tblCustDevices
WHERE tblCustDevices.Displayname LIKE '%1500%'
ORDER BY tblCustDevices.Displayname