Click to See Complete Forum and Search --> : Suppress every 2nd and 3rd record


vbjohn
February 27th, 2007, 03:52 PM
I need to suppress every 2nd and 3rd record that comes through. I am using Crystal Reports 9. I need to add this in the Formula Editor.

Any examples?

JaganEllis
February 27th, 2007, 04:56 PM
a suppression formula something like
recordnumber mod 3 <> 0
should do it.

vbjohn
February 27th, 2007, 04:57 PM
a suppression formula something like
recordnumber mod 3 <> 0
should do it.


Great thanks.