In Excel, for the formula: "IF(logical_test, value_if_true, value_if_false)"
Are there standards, OR are there efficiency rules, etcetera, that determine the BETTER version of the direction of the logical_test and the value_if_true/false?
For example, let's say the outcome of cell B1 is determined by whether cell A1 is blank (or not). So of the options:
Are there standards, OR are there efficiency rules, etcetera, that determine the BETTER version of the direction of the logical_test and the value_if_true/false?
For example, let's say the outcome of cell B1 is determined by whether cell A1 is blank (or not). So of the options:
- IF(A1="", "HELLO", "HI")
- IF(A1<>"", "HI", "HELLO")