L
likeyeah
Below is the result of a select query which generates a list of planned activities based on a crosstab, which
totals the ouptut of four sections and combines them into a wek number and how many are closed this week.
KeyEventWeek TotalPlanned
0802 4
0806 3
0915 26
0917 6
1005 1
1009 2
1013 102
1035 2
1050 177
1111 61
1128 8
1129 37
1139 126
1218 72
1209 47
1227 140
1301 1
1314 1
I want to convert these to a glide path which will be in effect give me th total of all activities on the
TotalPlanned Column - the weekly total. To do this I need to pull out the total number of activities in the
TotalPLanned column as the number will change as the project plan changes, which is why I do not want to use a
fixed variable.
I suppose what I am after is a sort of DSum routine that will add up all the numbers in the TotalPlanned columns
but is itself the third column of the query. If we named this AllupTotal that way I could generate a fourth
column which would be GlidePathFig: AllupTotal - TotalPlanned
Is this possible or do I need to reat a separate query run by code to dump the All up total figure into a Global
Variable and call it in the query??
Thanks
totals the ouptut of four sections and combines them into a wek number and how many are closed this week.
KeyEventWeek TotalPlanned
0802 4
0806 3
0915 26
0917 6
1005 1
1009 2
1013 102
1035 2
1050 177
1111 61
1128 8
1129 37
1139 126
1218 72
1209 47
1227 140
1301 1
1314 1
I want to convert these to a glide path which will be in effect give me th total of all activities on the
TotalPlanned Column - the weekly total. To do this I need to pull out the total number of activities in the
TotalPLanned column as the number will change as the project plan changes, which is why I do not want to use a
fixed variable.
I suppose what I am after is a sort of DSum routine that will add up all the numbers in the TotalPlanned columns
but is itself the third column of the query. If we named this AllupTotal that way I could generate a fourth
column which would be GlidePathFig: AllupTotal - TotalPlanned
Is this possible or do I need to reat a separate query run by code to dump the All up total figure into a Global
Variable and call it in the query??
Thanks