J
Janis Rough
tblRouter:routerName
tblUtilizationHistory:routerName, weekending date, utilization%
The match key is the routerName
What I want to do is create a flatfile output of the fields: routerName &
columns of the last 6 weeks utilization percentages for each router.They
want this report output to Excel like this.
RouterName, 8/25, 9/1, 9/7
Router ubrA... 50%, 80%, 81%
Router ubrB... 70%, 75%, 76%
Etc.
If I relate them with a right outer join then I get this right?
Routername, Date, utilization %
UbrA 8/25, 50%
UbrA 9/1, 80%
UbrA 9/7, 81%
UbrB 8/25, 70%
UbrB 9/1, 75%
UbrB 9/7, 76%
How could I output this to a flat file with rows and columns like the first
example? Do I need a query with a subquery or do I need a different
structure?
Tia,
tblUtilizationHistory:routerName, weekending date, utilization%
The match key is the routerName
What I want to do is create a flatfile output of the fields: routerName &
columns of the last 6 weeks utilization percentages for each router.They
want this report output to Excel like this.
RouterName, 8/25, 9/1, 9/7
Router ubrA... 50%, 80%, 81%
Router ubrB... 70%, 75%, 76%
Etc.
If I relate them with a right outer join then I get this right?
Routername, Date, utilization %
UbrA 8/25, 50%
UbrA 9/1, 80%
UbrA 9/7, 81%
UbrB 8/25, 70%
UbrB 9/1, 75%
UbrB 9/7, 76%
How could I output this to a flat file with rows and columns like the first
example? Do I need a query with a subquery or do I need a different
structure?
Tia,