I have a spread sheet where all of column A is a named range called "Michael".
I am getting the row number of the last occupied row.
This code works:
LRow = Worksheets("Head").Range("A" & Rows.Count).End(xlUp).Row
This code does not work:
LRow = Worksheets("Head").Range("Michael" & Rows.Count).End(xlUp).Row
How do I get this to work with me using the column name "Michael" and not the default A?