Code:
Private Sub cmdbtnDone_Click() Dim r As Range, r1 As Range
Set r = Range(RefEdit1)
Set r1 = r(1)
Debug.Print r1.Address
Debug.Print ActiveCell.Offset(0, 1).Range(r1.Address).Select
End Sub
The above code finds the first cell of the Range selection from the RefEdit. Then for test purposes only, it displays the range in the Immediate box in VBA. Which it does with the Debug.Print r1.Address. But what I need to do is to offset the r1.Address cell value, which in this case is (0 rows, and 1 column to the right) and display the new cell range with the second debug.print. All that displays is the value of "True". How can I display the new cell value of the same row and one column to the rights value? Thank You.