am writing an If Then Else Evaluation statement and could use some help.
If (PRIORITY=02 AND Condition=Alarm) then <h3 style="color:red;">A Critical Alarm</h3>
else
If (PRIORITY=12 AND Condition=Alarm) then <h3 style="color:orange;">A High Alarm</h3>
else
If (PRIORITY=22 OR PRIORITY=25 AND Condition=Alarm) then <h3 style="color:yellow;">A Low Alarm</h3>
else
If (PRIORITY=02 OR PRIORITY=12 OR PRIORITY=22 OR PRIORITY=25 AND Condition=Clear) then <h3 style="color:green;">A Cleared Alarm</h3>
... View more