You haven't explained whether these are summary values or detail level values. If summary values, then go to report->topN/group sort and insert a topN on them in descending order. Then, if you only have one group, you can go to format->section->group header or footer (wherever you have the summaries)->suppress->x+2 and enter:
groupnumber < 5
If you have more than one group, you would need to create a running total to manage the suppression of group level summaries.
If the value is at the detail level, then go to report->sort records and add the value as the sort field, descending. Then go to format->section->details->suppress->x+2 and enter:
recordnumber < 5
If you have groups and you are suppressing details within groups, you would need to create a running total that resets on change of group.
-LB