You should be able to do something like that, figure out what the InterfaceID is and you could use something like:
SELECT Nodes.Location, Nodes.Caption, Interfaces.InterfaceName, Interfaces.OutPercentUtil, Interfaces.InPercentUtil FROM Interfaces INNER JOIN Nodes ON Interfaces.NodeID = Nodes.NodeID WHERE Interfaces.InterfaceID = xxxx OR Interfaces.InterfaceID = xxxx OR Interfaces.InterfaceID = xxxx ORDER BY Nodes.Location DESC
as SQL in your OrionReport file or the equivalent through the Report Writer. Might be a better way to do it but I believe that should work for what you're asking