Crystal Report Group Record Number
Clash Royale CLAN TAG#URR8PPP
Crystal Report Group Record Number
I am working on C# Crystal Report 2013. I want this type of report
With serial number from 1 in each group. So how should I do this?
Group - Dept A
1 - 123 Abc
2 - 234 Xyz
3 - 445 Pqr
Group - Dept B
1 - 344 uuu
2 - 322 989
i have created groups but i want the numbering format that each group record should start from 1.
– Loyal
Feb 6 '15 at 10:07
Just create another group for Serial number under Dept group. And suppress the Details section. Place all fields on the Serial No group. You will get what you want.
– aMazing
Feb 10 '15 at 3:42
2 Answers
2
you can do it follow below way.
create a formula @reset
@reset
Shared Numbervar count;
count:=0;
Place above formula in group header and group footer.
Create one more formula @Count
to count and place it where requreid.
@Count
Shared Numbervar count;
count:=count+1;
count
Add running total field. Give it proper name.
Field to summarize : Select group column name to summarize.
Type of summary : Select "count".
In evaluate select "On Change of Group".
Reset : select "Never".
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Use Group Expert and choose the field you want to group by
– Emanuele Greco
Feb 6 '15 at 10:03