Hello fellow people
Can someone help me on a query please I am trying to build for our modern dashboard
The query I am running is as below but I want the 2nd column returned to be what is displayed in the KPI widget
SELECT TOP 10 n.FullName, round((n.Inbps / 1000000),2) as InMbps
FROM Orion.NPM.Interfaces n
WHERE (InterfaceID = 286)
This returns.
Column1 Column 2
Interface Desc bandwidth in mbps
In the KPI widget only column one desc appears but I would like the result of column 2 to be displayed.
Thank you in advance.