Two identical sheets. They both contain a column EMP#, which is pulled from a third sheet based on NAME. When there is a value for EMP#, stay on sheet1, when it is blank, move to Sheet2 (and vice versa).
I think because EMP# has a formula, no rows are moved. I tried a helper column with
=IF(NOT(ISBLANK([EMP#]@row )), 1, 0)
then based automation on that column when rows change to either 1 or 0, but each automation moves all rows. What am I doing wrong?