I have this if-else statement
if not isnull(ProcedureCode) then
(
ProcedureCode;
ProcedureDecription;
)
else
""
and it would print out only the ProcedureDescription. Could
someone help me with this? (I don't want to concatenate them
into one string because I want both in 2 separate lines)
if not isnull(ProcedureCode) then
(
ProcedureCode;
ProcedureDecription;
)
else
""
and it would print out only the ProcedureDescription. Could
someone help me with this? (I don't want to concatenate them
into one string because I want both in 2 separate lines)