CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2003
    Location
    St Paul, MN - USA
    Posts
    48

    Suppress every 2nd and 3rd record

    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?

  2. #2
    Join Date
    May 2006
    Posts
    324

    Re: Suppress every 2nd and 3rd record

    a suppression formula something like
    recordnumber mod 3 <> 0
    should do it.

  3. #3
    Join Date
    Jan 2003
    Location
    St Paul, MN - USA
    Posts
    48

    Re: Suppress every 2nd and 3rd record

    Quote Originally Posted by JaganEllis
    a suppression formula something like
    recordnumber mod 3 <> 0
    should do it.

    Great thanks.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured