Create a set of rules that show fall risk alerts, based on the following hypothetical description of risks factors:
For all patients with history of falls within past 2 years, an alert should be displayed, unless the patients are in a wheelchair. For patients at least 70 years old, an alert should be displayed if at least one of the following risk factors is present: gait instability, agitated confusion, urinary incontinence, falls history, prescription of sedative/hypnotics drugs.
So we have to use IF....statement then ALERT ... ELSE...etc
Example: . Suppose the following patient’s data is in the system: age = 27, weight = 150, height = 55
IF age < 50 OR weight < 120
THEN ALERT 1
Comments
Leave a comment