I'm trying have have my rows automatically update priority while allowing the user to move the rows to arrange their desired priority order. Its all working good with the exception if i move the first row or try to move another row as the new first row. I have absolute reference to the row, but it changes it anyway.
The formula I'm using.
=COUNTIFS(Status$1:Status@row, OR(ISBLANK(@cell), NOT(ISBLANK(@cell))))
If I move the first row, the formula changes and the absolute row number changes to the row I moved to.
=COUNTIFS(Status$NEWROW#:Status@row, OR(ISBLANK(@cell), NOT(ISBLANK(@cell))))
If i move another row to the first row the formula changes and the absolute row number changes to 2.
=COUNTIFS(Status$2:Status@row, OR(ISBLANK(@cell), NOT(ISBLANK(@cell))))
An absolute row shouldn't change. I need help with what I'm missing.
Thanks,
Terry