Notifications
Clear all
MEL, SQL, Oracle
2
Posts
2
Users
0
Reactions
71
Views
Topic starter
We have been using the following text translation in notes to bring in the list of current medications.
{FMT("Current Medications:","B")}
{'{MEDS_AFTER("list")}'}
However, the staff noticed when they have a patient without any medications this evaluates and returns a . Which does not really indicate the patients medications were checked, they could be blank or missed all togther.
Is there an easy way to update this to evaluate back with a value such as "Patient not currently on medications" instead of the no value?
Posted : April 1, 2026 3:31 pm
You can do this:
{'{if MEDS_AFTER("LIST")=="" then "Patient not currently on medications" else MEDS_AFTER("LIST")}'}
Posted : April 1, 2026 4:20 pm
