Link to home
Start Free TrialLog in
Avatar of Seven price
Seven priceFlag for United States of America

asked on

crystal report show line

I have a group that is group by brand name.

Now in the GroupFooter section I am not sure but I drew a line
But i have in my dataset a table name called sequence. Now
I want to show my line in Groupfootersection when sequence = 1
so everytime sequence = 1 it will show the line in the report.


The report looks like this:
brand
1     car  
2     car 2  
3     car 3
1     car 4
1  >>>>>>>>> line >>>>>>>>>
2     bike
3     bike3
4     bike4
5     bike5
6     bike4
7     bike
1  >>>>>>>>> line >>>>>>>>>

 
I'm using Crystal Report 2008, and
ASKER CERTIFIED SOLUTION
Avatar of Mike McCracken
Mike McCracken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Seven price

ASKER

Do you know the crystal syntax exactly
Avatar of Mike McCracken
Mike McCracken

Try

{YourSequenceField} <> 1

mlmcc
I tried a boolean syntax and that work thanks for your assists.