|
-
Jul 25th, 2006, 10:04 AM
#1
Thread Starter
Hyperactive Member
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.
-
Jul 25th, 2006, 12:01 PM
#2
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.
-
Jul 25th, 2006, 01:37 PM
#3
Thread Starter
Hyperactive Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|