I need to delete my 2 last populated rows, i have this code:
Range("B" & Rows.Count).End(xlUp).Offset(1).Select
that will select the row right below the last populated cell. I need the macro to select the two rows above the one that the code selects, and delete it!
THANKS!
Range("B" & Rows.Count).End(xlUp).Offset(1).Select
that will select the row right below the last populated cell. I need the macro to select the two rows above the one that the code selects, and delete it!
THANKS!