I am trying to create a roster style report. Occasionally, a given person will have a “backup” person, indicated by additional fields on the query record not being blank. Unfortunately, I don’t have enough space to simply add the additional name on the end of the line. What I would like would be to simply have a second line in the output for this case. I can do conditional printing on fields, but even if the field is not printed, it still takes up space. So if I have fields for the backup in the detail section, I always get a blank line, even if I put a conditional print on the fields in the second line. What I would like is a second detail section (that I can put a conditional print on) so that it only gets printed when there is a backup person. Yeah, I know that I should probably change my query to simply make a second record for the backup person, but then I would get all of the fields the same for each record, and that isn’t ideal either. What I would like is something like this:
BLOCK Name Phone
1204 John Doe 999-555-1212
Jane Smith 111-555-1212
1205 George Smith
1206 Claudia Schiffer 999-555-9999
The best that I can do is:
BLOCK Name Phone
1204 John Doe 999-555-1212
Jane Smith 111-555-1212
1205 George Smith
1206 Claudia Schiffer 999-555-9999
which isn’t ideal.
I hope that this is clear.