Percentage values in a crosstab query

R

RSunday

I make a crosstab on some country data:

Total val1 val2
Angola 7 4 3
Ghana 11 2 9
etc.

I would like to have a percentage for each val - e.g. 4/7 = 57% for val1 for
Angola.

How is that done?
 
D

Duane Hookom

You could create another query based on your crosstab that calculates the
percent or just calculate these in your form or report.
 
Top