I am wanted to implement a pop up box that will remind my nurses to do something if the BMI is out of range.
Ideally, when the BMI is generated, and it's abnormal, I would like for a box to pop up to remind them to do something and then they have to click OK to get through it.... Is this possible??
Thanks!
In the function section of your VFE Form, try something like this:
{ !if OBSNOW("BMI") == "Abnormal" then USEROK("NURSE: Go do something important") else "" endif }
Obviously, you will have to look at the condition above to determine "abnormal" for BMI. Would this be a too high value or too low value, if so, then use <= or >= condition to make the condition check correctly.
This function will be continuously be monitored and checked while this document/form is open and active.
