I have a fully functional Named Range to find last row:
"LastRowSheet1"
(I know it works because I can enter =LastRowSheet1 in a cell and the correct row number is displayed)
I have an array formula that is fully functional as is:
C+S+E
(which returns the row number and text "Keep this" if Match is found)
Now I want to use the result of "LastRowSheet1" in the above formula.
What is the proper syntax to use if I want to switch out the value for $N$300 and $O$300 and use LastRowSheet1 ?
"LastRowSheet1"
(I know it works because I can enter =LastRowSheet1 in a cell and the correct row number is displayed)
I have an array formula that is fully functional as is:
Code:
=IFERROR(MATCH($A2&"|"$B2,Sheet1!$N$1:$N$300&"|"Sheet1!$O$1:$O$300,0)&" Keep this","Not Found")
C+S+E
(which returns the row number and text "Keep this" if Match is found)
Now I want to use the result of "LastRowSheet1" in the above formula.
What is the proper syntax to use if I want to switch out the value for $N$300 and $O$300 and use LastRowSheet1 ?