How would I take the value of a data field and display something differently depending what was in it.
example:
If Terms = 1 Then have a text box display Net30
I am new to CR so any help is greatly appreciated!
Thanks
Printable View
How would I take the value of a data field and display something differently depending what was in it.
example:
If Terms = 1 Then have a text box display Net30
I am new to CR so any help is greatly appreciated!
Thanks
Use a Formula field. The following is for Crystal Syntax.
Place the Formula field on the report.Code:If {Terms} = 1 Then
"Net 30"
Else
"Pay Now or Else"
thnx