Crystal Reports Use formula
Hi,
By using use formula method in Crystal Report,I want to change "0" (numberic value) to "-" at run time, If it is not 0, I want to display the same value in the field.I had tried by using following code.
if{tb_test.n2}=0 then
"-"
else
{tb_test.n2} // Error: Use string value, But the field is numberic.
If I remove the "Else" part also it is not showing "-", Please help me in this regard.
Best Regards,
Sayeed.
|