Hi All,
I setup a quick SWQL Custom Query (below) to show certain Network Interfaces with the InPercentUtil and OutPercentUtil numbers, but I would rather display the numbers as they are shown in the Top 20 Interfaces by Percent Utilization (shown in snippet). Any help would be appreciated.

select
i.NodeID AS NODEID,
n.NodeName AS NODE,
i.Caption AS Interface,
i.InPercentUtil AS RECEIVE,
i.OutPercentUtil AS TRANSMIT
FROM
Orion.NPM.Interfaces as i
LEFT JOIN Orion.Nodes as n ON n.NodeID=i.NodeID
WHERE
(i.InterfaceIndex = 6 and i.InterfaceName LIKE 'Se%') OR
i.InterfaceName LIKE 'Ten-GigabitEthernet1/3/0/4[234]' OR
i.InterfaceName LIKE 'Bridge-Aggregation36' OR
i.InterfaceName LIKE 'Bridge-Aggregation6'
ORDER BY
n.NodeName, i.Caption