I have formual field called child_allergy in conditionaly place the DB field in the formual field or insert another value if a condition is not meet.
WhilePrintingRecords;
if isNull({ChildUserDefined.Allergy}) or
Trim({ChildUserDefined.Allergy}) ="" then "None On File "
else {ChildUserDefined.Allergy};
I only have the first line printing. The db field is 200 characters long.
WhilePrintingRecords;
if isNull({ChildUserDefined.Allergy}) or
Trim({ChildUserDefined.Allergy}) ="" then "None On File "
else {ChildUserDefined.Allergy};
I only have the first line printing. The db field is 200 characters long.