I need to supress all the records in the detail section of a report if the record count is less than 5. If the record count is greater than 5 then display only the 1st and 5th record.
I have a running total formula that performs the count however it is not suppressing the 1st record if the record count is less than 5. Instead it is printing the 1st record.
In the Section Expert--> Details --> Suppress on Formula
whileprintingrecords;
if {#RT_RecordCount}>5 then not({@employeeData}) in [1,5]
I have a running total formula that performs the count however it is not suppressing the 1st record if the record count is less than 5. Instead it is printing the 1st record.
In the Section Expert--> Details --> Suppress on Formula
whileprintingrecords;
if {#RT_RecordCount}>5 then not({@employeeData}) in [1,5]