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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crystal 8.5 Crashes on particular field.

Status
Not open for further replies.

chuchuchui

Technical User
Joined
Dec 23, 2004
Messages
33
Location
US
I am using Crystal 8.5 on Windows 2000 using IBM Universe Database. I am having trouble with a column called COVCLIMIT on my HO_COVERAGES table. I have six of these type of columns which all contain numeric data or NULL values. I set Crystal to convert NULL Field Value to Default. The five columns all return the numeric data they contain, COVALIMIT to COVFLIMIT (A though F). Everytime I try to run it to display COVCLIMIT the program crashes. Is there anyway to figure out what record it doing this?
 
I can't explain your problem, but I can suggest a work-round, involving not trying to convert nulls. Instead adjust your report to handle them. E.g.
Code:
if isnull({your.amount}) then 0 
		         else {your.amount}
or
Code:
if isnull({your.date}) 
or {your.date} in [{Start-Date} to {End-Date}) then "OK"
else "not"
I hope this helps.

[yinyang] Madawc Williams (East Anglia, UK) [yinyang]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top