Example : I have 3 fields in a table
GroupNo Profit NoEmployees
1 $5 2
1 $1 1
2 $2 2
2 $0 2
I want report to appear as such
Group Profit NoEmployees
1
$5 2
$1 1
totals $6 3 Profit Per Emp $2
2
$2 2
$0 2
totals $2 4 Profit Per Emp $.50
But I want to sort either by ascending ProfitPerEmp or descending Profit Per Emp
Is this possible?
GroupNo Profit NoEmployees
1 $5 2
1 $1 1
2 $2 2
2 $0 2
I want report to appear as such
Group Profit NoEmployees
1
$5 2
$1 1
totals $6 3 Profit Per Emp $2
2
$2 2
$0 2
totals $2 4 Profit Per Emp $.50
But I want to sort either by ascending ProfitPerEmp or descending Profit Per Emp
Is this possible?