I'm hoping there's a simple solution, and I've searched for this here and on Google but haven't been able to find it, apologies if I missed it!
I need to identify (on VBA) what cell this navigates to:
Range("A1").Select Selection.End(xlToRight).Offset(0, 1).Select
As it stands, the cell is V1, but this file is constantly changing and new columns are being added, so I always need to go to the first empty column to the right.
So, I basically need a way for the above code to confirm what cell that movement navigates to, and use this as a range I call refer to for the rest of my code.
I've tried a couple of things, but none of it has worked :(
Hope that makes sense! Any help would be greatly appreciated!