I'm confused on how to update a Range variable with the current cell. Say I have the following:
Dim site_curr_position As Range
Set site_curr_position = Worksheets("newsheet").Range("D14")
Set site_curr_position = Worksheets("newsheet").Range("E14")
Worksheets("newsheet").Range("A4").Select
'Set site_curr_position = ?
How do I get the range of that cell where the cursor is now placed?