Since Report Writer will be going away and we have several custom reports that we use for metrics, I'm trying to migrate them from Report Writer to Web-Based reporting. I have copied the SQL code and pasted it in the Web Console but I can't find a way to make it so that I can change the dates on the reports or how to change the node ID that I need the information on.
For example, I run a report every month that shows all the nodes (offices) bandwidth utilization. When I copied the SQL and ran the web based report, there is no where to change the dates (EX. 5/1-5/31, or last 30 days). Similarly, I run reports on specific offices (nodes) to show how often their MPLS circuits are getting overutilized, but I don't see a way to have the node ID be a variable where I put in the specific node ID that I need said information on.
Is there a way to do this in the web-based reports?
WHERE
( DateTime BETWEEN 43624 AND 43655 ) <-- this needs to be able to be a specific date range or last 30 days
AND
(
(Nodes.NodeID = 34) <-- this needs to be able to be changed to other node IDs AND
(DATEPART(weekday, DateTime) <> 1) AND
(DATEPART(weekday, DateTime) <> 7) AND
(DatePart(Hour,DateTime) > 8) AND
(DatePart(Hour,DateTime) < 17) AND
(DATEPART(weekday, DateTime) <> 2)
)