Click here to Skip to main content
15,920,687 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi everyone,

I want to make the column the null(string.empty) instead of place zero(0)
in crystal report.please solve my problem.
Posted
Comments
Supriya Srivastav 25-Jan-12 3:06am    
Do you want to put string.empty in place of 0(integer datatype) or something else.

1 solution

you can make a formula in crystal report

C#
stringvar abc := "";
if(isnull(yourfieldname))
then
(
  abc;
)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900