I\'ve got this script below but it keeps returning the incorrect information. For instance, even though the \"urgency\" may equal \"medium\", it returns the \"critical\" res
You should use == for comparing , not =
==
=
if (urgency == "Critical")
and so on..