Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Too much detail
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire de rapports & Rapports
Titre:
Divers
Thread ID:
00127550
Message ID:
00127787
Vues:
29
>>Michelle,
>>
>>Got to every field and albel and line or box in teh report detail band and double click it. You will see an option for Print When, choose it ans check the Remove Line If Blank option.
>
>That was already there.
>
>I think the problem is that the truely blank lines aren't actually records, so that line doesn't apply. Something else is causing them that I haven't figured out yet. They're there on every page, always the same amount of space.
>
>The other lines aren't completely blank. It puts 0's in for the numeric values and / / in for the date. If I browse the table at that point, the filter is set to the details of the previous group, so I can't tell if there's empty records in there. There shouldn't be, though. This problem happens when there is no entry in the details table that corresponds with the statements table.
>
>Thanks,
>
Michelle,

The ecpressions for your report fields are doiung this to you. You are at EOF int eh child table when there are no records. VFP has a phatom record at eof that is empty, so your numbers are 0 and your dates are / / . You can fix this by making the expression for each field be ;

IIF(EMPTY(FieldName),"",FieldName)

This way the fields will be truly empty and the surpression of blank lines will work.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform