Hello -- I'm copying the exact text from another post I found in the SQL forum as I'm wondering how to do this with Crystal XI. When I try to type (Maximum(count({Table.Field})), I get the message that this field cannot be summarized. All suggestions are welcome! Thanks
I have the following data:
Craftname day_of_week count
Craft 1 Monday 2
Craft 2 Monday 8
Craft 3 Monday 3
Craft 4 Monday 5
Craft 1 Tuesday 1
Craft 2 Tuesday 4
Craft 3 Tuesday 1
Craft 4 Tuesday 3
I would like to sum the above data by day then return the max count. For example
Monday = 2 + 8 + 3 + 5 = 18
Tuesday = 1 + 4 + 1 + 3 = 9
I need to return the number 18 or which ever day has the largest summed count. How can I do this in Crystal?
I have the following data:
Craftname day_of_week count
Craft 1 Monday 2
Craft 2 Monday 8
Craft 3 Monday 3
Craft 4 Monday 5
Craft 1 Tuesday 1
Craft 2 Tuesday 4
Craft 3 Tuesday 1
Craft 4 Tuesday 3
I would like to sum the above data by day then return the max count. For example
Monday = 2 + 8 + 3 + 5 = 18
Tuesday = 1 + 4 + 1 + 3 = 9
I need to return the number 18 or which ever day has the largest summed count. How can I do this in Crystal?