AndrewG1976
Technical User
CR: 8.0
Oracle: 8.1.7
I have a report I'm trying to customize. When I try to refresh the report I get the error "Blob field or memo field cannot be used in a formula".
The formula it is complaining about is:
==========
@Name and Email Address
trim(
if {incomingmessageview.SENDERNAME} <> {incomingmessageview.SENDEREMAILADDRESS} then
trim({incomingmessageview.SENDERNAME}) + " <" + trim({incomingmessageview.SENDEREMAILADDRESS}) + ">"
else
trim({incomingmessageview.SENDEREMAILADDRESS}))
==========
The view fields are:
incomingmessageview.SENDERNAME VARCHAR2 (300)
incomingmessageview.SENDEREMAILADDRESS VARCHAR2 (300)
I know that because the fields exceed 254 characters, they are treated as memo fields by Crystal, and in versions of Crystal prior to version 9, you are not allowed to use memo fields in formulas.
Is there a way to overcome this problem?
Oracle: 8.1.7
I have a report I'm trying to customize. When I try to refresh the report I get the error "Blob field or memo field cannot be used in a formula".
The formula it is complaining about is:
==========
@Name and Email Address
trim(
if {incomingmessageview.SENDERNAME} <> {incomingmessageview.SENDEREMAILADDRESS} then
trim({incomingmessageview.SENDERNAME}) + " <" + trim({incomingmessageview.SENDEREMAILADDRESS}) + ">"
else
trim({incomingmessageview.SENDEREMAILADDRESS}))
==========
The view fields are:
incomingmessageview.SENDERNAME VARCHAR2 (300)
incomingmessageview.SENDEREMAILADDRESS VARCHAR2 (300)
I know that because the fields exceed 254 characters, they are treated as memo fields by Crystal, and in versions of Crystal prior to version 9, you are not allowed to use memo fields in formulas.
Is there a way to overcome this problem?