Reputation: 783
Fairly new to Crystal Reports. If someone could point me in the right direction that would be great.
So I have a report that when run will produce the following:
ID | Car
-----------
1 | Audi
2 | Ford
3 | Audi
4 | Ford
5 | Honda
In the report footer I want to produce a count of each distinct car. So for example I should have:
Audi - 2
Ford - 2
Honda - 1
Any help will be much appretiated!
Upvotes: 0
Views: 304
Reputation: 7517
The following should give you the desired result:
Car
-field in the details-sectionCar
-fieldCar
-field then select Insert -> Summary
Count
Upvotes: 1