Hi,
Using Crystal 10.
I have this formula in my report:
Why does it not display "N/A" if none of the conditions are true?
~RLG
Using Crystal 10.
I have this formula in my report:
Code:
stringVar MedOncDoc := "N/A";
If {Config_1.Inst_Abrv} like "*MED" then
MedOncDoc := {Staff.Initials}
else
If {Config_2.Inst_Abrv} like "*MED" then
MedOncDoc := {Staff_1.Initials}
else
If {Config_3.Inst_Abrv} like "*MED" then
MedOncDoc := {Staff_2.Initials};
MedOncDoc
Why does it not display "N/A" if none of the conditions are true?
~RLG