I am trying to create a cross-sheet formula. I want the formula in sheet 1 to check a row on sheet 2 for a boolean value (flag). If a cell in the row on sheet 2 contains a flag, I want it to return a value from another row on sheet 2. I have been writing what I think the formula should be to no avail.
=IF(ISBOOLEAN({Sheet 2 - Range 3}), {Sheet 2 - Range 2}, "")
Result I get is #INCORRECT ARGUMENT SET
I want the flagging of the cell in sheet 2 to be what triggers sending the content of the other cell to sheet 1. If there is no flag, then the other cell is blank and should be ignored....
Thanks in advance for any assistance!