I'm working with Crystal reports. I have made many reports. And recently I was told, that null values should be printed as text ('no value') and not blank. I understand that I should create formula:
If isnull({some_field}) then 'no value' else {some_field}
and put this formula on report. But this will take many pointless hours. Are there any shorter way?
My enviroment: Crystal reports 2008 and Oracle db.
Thanks.