I am trying to make a logical operator variable (>,<,=) based on the user's input.
My main goal is to add a string of text as the logical expression of an if statement. For example I want to take =(A22&A23&A24) which will yield 3>2 in cell A26.
Then I want to take the text of A26 and place it into an if statement:
=IF(A26, True, False) which if I were to just type in 3>2 would give me True. However I just get #VALUE. I've tried converting it to text, copy and pasting it with just the values but I always get #VALUE.
Any ideas?