I'm Semi new to the use of MEL and I'm trying to keep our patient instructions from printing any appt types with "confidential" in them. The problem I'm coming across is I'm not finding the function that will look at appt types to use it as a modifier. This is what's currently in use:
Clinic Visit Date: {DOCUMENT.CLINICALDATE}
{if obsnow('INSTRUCTIONS') <> "" then "Based on this visit, your provider recommended the following: \n\r" +ccc_add_num_with_carriage_ret(obsnow("INSTRUCTIONS"))+"\n\r" else "" endif}
Next Scheduled Appointment:
{APPTS_BY_STATUS("scheduled","FULL")}
Please contact us at phone number listed above with any questions or concerns.
Any help is appreciated!
In case someone else is interested in this answer, the key is by_status. The letter prints scheduled, so we needed to create an apt status we could use for confidential appointments.