How is your label report set up?
Do you have 5 detail sections with 2 labels in each?
Are the sections set to the proper size of the label?
Do the labels each consist of a single formula with a "Can Grow" enabled? or are they a fixed size?
You really haven't described your report to us.
If there is 5 detail sections, you can simply remove the middle section.
Or you can have a parameter added to the report to designate which labels are printed. This is often done when only printing one or two labels ... not a complete sheet of them.
In this case, number your labels left to right, top to bottom.
Now create a string parameter to designate which labels are to be printed
//?LabelsPrinted
Type: String
Description: type in the number position of the labels to be printed separated by a comma Eg. 1,2 or "ALL" for a complete sheet.
Default Value: ALL
OR you could say 1,2,3,4,7,8,9,10 to eliminate labels 5,6
Now in the report header create this suppressed formula field
//@Init
WhilePrintingRecords;
StringVar Array LabelNo := Split({?LabelsPrinted,","

;
""; //just put here to make the formula legal
Now in each label formula in the report put this formula
In the conditional suppress for the field
For Label 1
WhilePrintingRecords;
StringVar Array LabelNo;
Not (1 in LabelNo) ;
For Label 2
WhilePrintingRecords;
StringVar Array LabelNo;
Not (2 in LabelNo) ;
That is my best guess....not knowing how your report is set up.
Jim Broadbent
The quality of the answer is directly proportional to the quality of the problem statement!