Yes, just create a calculated column (click the button with the sigma symbol to begin) and use a CASE statement. Something like:
case when table_name.Billing_Code >= 2000 then ( table_name.amount * (-1) ) else table_name.amount end
Yes, just create a calculated column (click the button with the sigma symbol to begin) and use a CASE statement. Something like:
case when table_name.Billing_Code >= 2000 then ( table_name.amount * (-1) ) else table_name.amount end