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!

Blob field or Memo field workaround?

Status
Not open for further replies.

DianaStewart

Programmer
Apr 16, 2002
58
0
0
CA
I am viewing my reports by typing in the url in the browser like this:
It was taking a long time to display, the performance was very slow. So the suggestion was made to convert the connection to my Access database from Direct to ODBC. I changed the connection to ODBC and encountered this error:

Blob field or Memo field cannot be used in a formula.

I understand that any fields that are > 254 will be converted to a memo field and Crystal reports does not work with memo fields.

So I went into my Access database and changed the field from 255 to 250 characters.

I reran the report and it still gave me the same message...

Strange thing is in my database the field will show as 100 characters but when I view the field from within the Report Designer it shows as 200 charcters????!!!!!

Here is the formula where I keep encountering the blob err message:

if {Table1.Description1} <> &quot;N\A&quot; then {Table1.Description1}
else if {Table1.Description2} <> &quot;N\A&quot; then {Table1.Description2}
else if {Table1.Description3} <> &quot;N\A&quot; then {Table1.Description3}
else if {Table1.Description4} <> &quot;N\A&quot; then {Table1.Description4}


How can I get around this without modifying the database physically?

Help
Diana
 
Did you run a &quot;Verify Database&quot;?
This will allow you to fix your report if any changes to the db tables/fields have been made.

It will allow you to remap your fields.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top