I apologize if this is long winded in advance. I’m new to Crystal Reports so I wanted to lay this out as clear as possible being I’m not familiar with all of the terminology yet.
I was tasked with modifying a company’s existing report in Crystal. They have trade data in a report that is in a Group Header / Details / Group Footer layout. They want 3 of the fields in the group header displayed only for the first row in a grouping and then hidden in the rest of the grouping. The problem is they want those values displayed again if the grouping details carries over to a new page - they would like those 3 fields’ values displayed again in the top row.
I’ve been able to get the data suppressed successfully on a single page using the below suppress formula for the specified field in the grouping:
IF(PREVIOUS({Field_1}) = {Field_1}) THEN TRUE ELSE FALSE
This works exactly how they need it to until the data carries over to a new page. How can I get these displayed again for the same grouping in the top row of a new page?
Note: I’ve already tried using “Repeat Group Header On Each Page” option in Change Group --> Options for the Group Header to no success. I also tried doing the Format Field --> Suppress/Suppress If Duplicated option on the specified fields, also, to no success.
A sample of the expected results outline of the report would look like:
Field 1 Field 2 Field 3 Field 4 Field 5
value a value b value c value d value e
------------------ value f value g value h
------------------ value i value j value k (grouping 1 data)
(new page)
value a value b value l value m value n
------------------ value o value p value q (grouping 1 data)
value c value d value a value b value c
------------------ value d value e value f
------------------ value g value h value i (grouping 2 data)
Thanks in advance for any help any of you are able to provide! If I can get this one solved it’d be a huge weight off my shoulders!
DannyS0801 (BOB member since 2016-02-05)