In this example, where Field1 - Field2 can equal 0 and will, how to I add another condition so that it continues with evaluating the conditions to compute the THEN when Field1 - Field2 does not equal zero?
CASE
WHEN (100 * ((Field1 - Field2) / Field1)) = X) OR
WHEN (100 * ((Field1 - Field2) / Field1)) = Y) OR
WHEN (100 * ((Field1 - Field2) / Field1)) = Z)
THEN (Field1*1.05)
END AS 'FIELD3'
Cheers