Notifications
Clear all
Topic starter
I need to create action buttons that will add a dx code to the problem list...............but I only want the button to display IF the obs term "BMI" is less than 19.
Can any one help with the MEL lang for the visiblity region?
Thanks, Sharon
Posted : May 5, 2015 7:15 am
You could just put something like this inside of the visibility screen:
OBSNOW("BMI") >= 40
or if you needed a range
(OBSNOW("BMI") > 25) AND (OBSNOW("BMI") <= 30)
Dave Montgomery
Posted : May 5, 2015 7:35 am