Is it possible to reference text from various cells to construct a formula in a different cell?
Example:
A1 = 1
A2 = >
A3 = 0
=IF(CONCATENATE(A1:A3),1,0) returns 1
This obviously returns an error, but I'm hoping there's a function that does something like this.
Also I'd like to avoid using if statements since I have quite a few values that can populate the reference cells. (EX: IF(A2="<",...,IF(A2=">",...)))