I'm attempting to select all cells from the current active cell up to the last non-blank cell. I'm doing this with the macro recorder right now because I don't know how to write the code yet. What it's recording when I do Ctrl+Shift+Up is
Range(Selection, Selection.End(xlUp)).Select
This is fine, except it's changing the active cell to the top cell instead of the bottom cell. I've tried going from top to bottom, from left to right, and right to left. Down to up and right to left are the only ones where the active cell changes when I run the code. I have a feeling this is because Excel selects ranges in the positive direction by default, but I don't know how to fix the issue.