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!

Replace Null into 0(Zero) 1

Status
Not open for further replies.

Elango1253

Programmer
May 16, 2007
8
0
0
IN
Hi all,
I'm using CR10.In my Report some fields are empty because the same fields in the databse are NULL..Now,I want to Replace the Empty field in to 0(zero).Anyone who knows the solution for this issue plz let me know...I'll be thankfull for u...

Elango.p
 
2 ways are possible,File->Report->Options Convert null to default value.

Or write a formula, as in:

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

Use that formula in lieu of the actual field.

-k
 
Thanks a lot synapsevampire..Keep on clear my doubts..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top