Issue
Rather than use large If statements, use a switch statement instead
Solution
switch([var_severity])
{
case 'One': [var_toaddress] = 'Value One';
break;
case 'Two': [var_toaddress] = 'Value Two';
break;
}
Article ID: 26, Created: November 20, 2015 at 11:34 AM, Modified: August 18, 2016 at 11:25 AM