multiple queries data displayed as percentage

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello, I 'd like to display the results of a query's output as a percentage
rather than a list of all rows that contain data from the table. Should I do
this as a form or report. I'd like to have multiple queries being outputted
as either a percentage or running totals rather than as a list of rows.
i.e.:
1) number of respondents that have a website: 47.8%
2) total number of respondents with a website : 127
etc.
What is the best way to do this?
regards,
Steve
 
Hi karl, How do I create my totals output so that it isn't displaying all the
records in my query?
Thanks
Steve
 
Do not include the details, just the rollup.
GP XY
1 A
1 R
1 X
2 B
2 W

Group by GP and count XY
GP SumOfXY
1 3
2 2
 
Back
Top