Results 1 to 3 of 3

Thread: mark special record

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2002
    Posts
    471

    Resolved mark special record

    Hi, all,

    I am tring to add a special symble for a record if it meets some condition. The result is somehow like this:

    apple
    # orange
    cherry

    How can I do that? Thanks
    Last edited by Palmtree; Jul 25th, 2006 at 01:37 PM.

  2. #2
    PowerPoster
    Join Date
    Oct 2002
    Location
    British Columbia
    Posts
    9,758

    Re: mark special record

    Add a Text Object, enter the desired text and set it's Suppression Formula to something like

    {Database Field Name} <> "orange"

    Or create a Formula and put it on the report instead of the database field.

    Code:
    If {Database Field Name} = "orange" Then
       "# " + {Database Field Name}
    Else
       {Database Field Name}
    Last edited by brucevde; Jul 25th, 2006 at 12:06 PM.

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2002
    Posts
    471

    Re: mark special record

    Thanks so much, bruce.

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