How do you select the entire excel sheet with Range using Macro in VBA?
I found a similar solution to this question in c#... See link below How to Select all the cells in a worksheet in Excel.Range object of c#? Does anyone have a snippet to do this in VBA? I'm not really familiar with VBA, so this would be helpful. Here's what I've got so far... I select data normally by using "ctrl+shift over arrow, down arrow" to select an entire range of cells. When I run this in a macro it codes out A1:Q398247930, for example. I need it to just be .SetRange Range("A1:whenever I run out of rows and columns") This is very simple, and I could easily do it myself without a macro,