(
select max(A.`field`)
from Table A
where A.`groupfield` = Table.`groupfield`
)
Could you define A, field, and groupfield for me.
The table that contains the rate is called 'eePayCodes', the table that contains the Employee # is called 'eeKeys'
So would it look like the following?
(
select...
OK so #1 worked swimmingly. Thanks.
For #2 I'm a little confused, so I'm going to give you a more detailed description.
Sample Raw Data
Emp # > Rate > Amount
001 > 0.35 > 10
001 > 1.70 > 20
001 > 0.00 > 10
002 > 0.35 > 20
002 > 0.35 > 10
003 > 0.35 > 20
004 > 1.70 > 10
I grouped the data by...
I have the following questions regarding a report I'm trying to develop in Crystal.
1. I have a formula that is calculated at the group level. It is the sum (field A) divided by the distinct count of (field B). The formula works fine, but I now want to have a grand total for the formula, and...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.