spining123
Technical User
I have an If statement that I need about three actions for this statement if not null.
If the FormofMaterial is not null I would like to printout:
crred (to print in red)
"/" (just adding a / before the item)
FormofMaterial (the item)
Listed is what I have so far. Only printing out FormofMaterial or blank if null.
If not IsNull ({tblManuscriptCollections.FormofMaterial})
then {tblManuscriptCollections.FormofMaterial}
else " ";
Your help is truly appreciated
If the FormofMaterial is not null I would like to printout:
crred (to print in red)
"/" (just adding a / before the item)
FormofMaterial (the item)
Listed is what I have so far. Only printing out FormofMaterial or blank if null.
If not IsNull ({tblManuscriptCollections.FormofMaterial})
then {tblManuscriptCollections.FormofMaterial}
else " ";
Your help is truly appreciated