When writing an Excel formula, does it make a difference whether you set a value to true, "true", or true()?
In other words, which of the following is the best? Or does it depend on the circumstances?
if (A1 = 1, true, false)
if (A1 = 1, "true", "false")
if (A1 = 1, true(), false())