Click here to Skip to main content
15,894,180 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have generated on Crystal Report with 3 column a,b,c.
I want to display "Not Available" value when value in column a is blank.

Plz Please help how to do it. where to insert code?
Posted
Updated 13-Jul-12 21:03pm
v2

1 solution

Hi,

You have to use the formula fields instead of direct fields.

Formula fields[^]

C#
Report formula:

if (IsNUll(colum1)) Then
   "Not Available"
else
   column1



similarly write for all 3 columns

hope it helps.
 
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