K
koelaboe
hi all
i moved my preamble to the bottom so you don't have to read it if you are
short on time.
here is one problem i cannot fix in my app.
table: volunteers
fields: name, on line, in office, out of office, bingo, workshop, supervision.
data collected is number of hours.
i have the monthly query and report done but the annual is giving me a
headache.
for the annual i have to create a total of all the fields in a separate
column.
annual query:
SELECT DISTINCTROW volunteers.[volunteer names], Sum(volunteers.[On line])
AS [Sum Of On line], Sum(volunteers.[In office]) AS [Sum Of In office],
Sum(volunteers.[Out office]) AS [Sum Of Out office], Sum(volunteers.Bingo) AS
[Sum Of Bingo], Sum(volunteers.Workshop) AS [Sum Of Workshop],
Sum(volunteers.[O#l#super]) AS [Sum Of O#l#super]
FROM volunteers
GROUP BY volunteers.[volunteer names], volunteers.Date
HAVING (((volunteers.Date) Between [enter beginning date ( like: apr 2005)]
And [enter ending date ( like: mar 2005)]));
annual report:
report header: title and pic
page header: column labels
volunteer names header: blank
detail (moved right up against header above): sum of online, sum of in
office, etc...
detail not visible
volunteer names footer: volunteer names, =sum([sum of on line]), =sum([sum
of in office]), etc...
page footer: current date and page number
report footer: total (label), =sum([sum of on line]), =sum([sum of in
office]), etc...
this gives a nice report with each volunteer having 1 line and all their
hours summed in each column.
now at the end (to the right) of each row i would like to add a new column
that adds all the previous columns so a get a total hour tally per line of
volunteer.
and to top it off in the report footer a grand overall total for all hours
served.
..................
i made and used 3 sets of dbase apps with paradox, dos version, well over 10
years ago.
as a volunteer i have maintained and ran them.
but as i am getting on in years and 'old timers' is getting the better of me
i want my local crisis centre to take it over from me and have the secretary
do the inputting and reports.
so i am porting it over to access. almost done but by using the wizards
only, just too old to start learning coding and sql stuff, i just can't
finish it up the way i want it.
hope i am not asking for too much.
appreciated,
nick
i moved my preamble to the bottom so you don't have to read it if you are
short on time.
here is one problem i cannot fix in my app.
table: volunteers
fields: name, on line, in office, out of office, bingo, workshop, supervision.
data collected is number of hours.
i have the monthly query and report done but the annual is giving me a
headache.
for the annual i have to create a total of all the fields in a separate
column.
annual query:
SELECT DISTINCTROW volunteers.[volunteer names], Sum(volunteers.[On line])
AS [Sum Of On line], Sum(volunteers.[In office]) AS [Sum Of In office],
Sum(volunteers.[Out office]) AS [Sum Of Out office], Sum(volunteers.Bingo) AS
[Sum Of Bingo], Sum(volunteers.Workshop) AS [Sum Of Workshop],
Sum(volunteers.[O#l#super]) AS [Sum Of O#l#super]
FROM volunteers
GROUP BY volunteers.[volunteer names], volunteers.Date
HAVING (((volunteers.Date) Between [enter beginning date ( like: apr 2005)]
And [enter ending date ( like: mar 2005)]));
annual report:
report header: title and pic
page header: column labels
volunteer names header: blank
detail (moved right up against header above): sum of online, sum of in
office, etc...
detail not visible
volunteer names footer: volunteer names, =sum([sum of on line]), =sum([sum
of in office]), etc...
page footer: current date and page number
report footer: total (label), =sum([sum of on line]), =sum([sum of in
office]), etc...
this gives a nice report with each volunteer having 1 line and all their
hours summed in each column.
now at the end (to the right) of each row i would like to add a new column
that adds all the previous columns so a get a total hour tally per line of
volunteer.
and to top it off in the report footer a grand overall total for all hours
served.
..................
i made and used 3 sets of dbase apps with paradox, dos version, well over 10
years ago.
as a volunteer i have maintained and ran them.
but as i am getting on in years and 'old timers' is getting the better of me
i want my local crisis centre to take it over from me and have the secretary
do the inputting and reports.
so i am porting it over to access. almost done but by using the wizards
only, just too old to start learning coding and sql stuff, i just can't
finish it up the way i want it.
hope i am not asking for too much.
appreciated,
nick