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

Null To Zero

Status
Not open for further replies.

Smithsc

MIS
Apr 20, 2007
143
GB
Is there a function in Crystal which works the same as the NZ function in MS Access?
 
You can go into file->report options and select "convert null to default values". Otherwise you have to convert in a formula:

if isnull({table.number}) then
0 else
{table.number}

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top