I need to compute the Duty Rate on an item by dividing the Duty Paid by the Value of the goods.
and this code works:[code language="sql"]CASE when [VALUE] =0 THEN 0 ELSE Round(CAST([Duty] AS flo
and this code works: