If you are trying to the below :
CASE WHEN "Severity" NOT IN ('Emergency','High','Medium') THEN 'Outstanding' ELSE "Severity"Then the equivalent IF condition would be as below:
if("STATUS"!='Emergency' AND "STATUS"!='High' AND "STATUS"!='Medium','Outstanding',"STATUS")
Regards,
Krishna Tangudu