Hey everyone,
Probably a stupid question, but can't seem to find the right solution for it on the internet.
I want to select a range, except the last row. I tried it with "offset", but the result is that he moves the selection 1 Up, and that is not what I want. I want to keep the selection, minus the last selected row.
Code I use now is
Thx for the help!![]()
Worksheets("Sheet1").Activate Range("A3:B3").Select Range(Selection, Selection.End(xlDown)).Offset(-1, 0).Select
Bookmarks