cancel
Showing results for 
Search instead for 
Did you mean: 

Crystal Reports XI R2 export excel problem

Former Member
0 Kudos

I would like to know how to handling null database fields when exporting to excel.

It seems the exporting process remove all the null field and shift all other database field to left.

thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Geoffrey,

Use field formulas to create blank spaces whenever empty string (or null) text values are possible.

Example:

if isnull({Q.SAMPLETYPE}) or {Q.SAMPLETYPE} = '' then space(12)

else

{Q.SAMPLETYPE}

Rick

Answers (0)