Whether using
IF Approved? = TRUE THEN 1 ELSE 0
is good or optimizing the formula as
IF Approved? THEN 1 ELSE 0
where "Approved?" is a BOOLEAN format line item.
Same goes for,
IF Approved? = FALSE THEN 1 ELSE 0
IF NOT Approved? THEN 1 ELSE 0
Please advise to optimize performance of the model.