Notifications
Clear all
Topic starter
Hello All,
Quick MEL question:
I can Add Text to the end of an obs value:
OBSNOW("PLAN",OBSNOW("PLAN") + hret + "ECG today to evaluate cardiac rhythm in the setting of medications and cardiovascular risk." + hret)
Now I would like to add the text at the beginning of the OBS.
such that the ECG today... statement is always at the beginning of the Plan OBS ( This is triggered by pushing a button.
Thanks for the help
Jack
Posted : June 26, 2020 3:31 am
I rarely work in MEL, but it seems to me that reversing the arguments should work.
OBSNOW(“PLAN”, “ECG today to evaluate cardiac rhythm in the setting of medications and cardiovascular risk.” + hret + OBSNOW(“PLAN”) + hret)
-dp
Posted : June 26, 2020 3:57 am
Topic starter
Thanks,
I initially tried this but must have fat fingered something. Works perfectly!
JJC
Posted : June 26, 2020 4:22 am