Reputation: 62464
how to make line after 2 rows in crystal report ?
ex:
aaaaaa
bbbbbb
cccccc
ddddddd
(working in C#)
thank's in advance
Upvotes: 1
Views: 1647
Reputation: 26940
Add another detail section, put the line object inside it, add this suppress formula to the new detail section...
remainder(recordnumber, 3) <> 0
Upvotes: 4