jschill2628
Programmer
I am working in Crystal reports 2008 version 12. I am trying to extract data for a data conversion. Currently I have the following formula:
if (isnull({IRSCLAIM.MISCA_DESC}) or ({IRSCLAIM.MISCA_DESC}) ='') then "*"
else {IRSCLAIM.MISCA_DESC}
however with this formula it does not take care of the carriage returns or the pipes.
The following formulas that takes care of that, but then according to the vender that need the asterisk in the "last" null fields.
REPLACE(REPLACE(REPLACE({IRSCLAIM.MISCA_DESC},"|",","),CHR(13)," "),CHR(10)," ")
is there anyway to combine these two formulas so we get rid of the null values, pipes and carriage returns?
thank you in advance
if (isnull({IRSCLAIM.MISCA_DESC}) or ({IRSCLAIM.MISCA_DESC}) ='') then "*"
else {IRSCLAIM.MISCA_DESC}
however with this formula it does not take care of the carriage returns or the pipes.
The following formulas that takes care of that, but then according to the vender that need the asterisk in the "last" null fields.
REPLACE(REPLACE(REPLACE({IRSCLAIM.MISCA_DESC},"|",","),CHR(13)," "),CHR(10)," ")
is there anyway to combine these two formulas so we get rid of the null values, pipes and carriage returns?
thank you in advance