Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

error: "blob field or memo field cannot be used in a formula"

Status
Not open for further replies.

alebox20

Programmer
Oct 19, 2004
72
0
0
BR
I have a cross tab report wich I need to insert a field, but I receive this message.

The odd thing is the field exists (I can insert the field in the report, but I can't use it in a formula).

thanks!
 
CR 8.5 and below can't use them in formulas, in fact you're limited to fields of 254 or less.

You might get around this by creating a SQL Expression in Crystal which parses it down to 254 characters, such as:

substr(table.field,1,254)

A wild guess at the syntax because you've posted nothing technical, such as:

Crystal version
Database/connectivity used
Example data
Expected output

In other words, your post doesn't ask for anything more than confirmation of what you already know, that you can't use it.

Why not post what you have, and what you need?

-k
 
My post asked about an error, and you resolved it. I cannot see problems...

I have a problem, so I need the solution.



PS: CR8.5
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top