Hi gombi,
Declaring variables will be very helpful as you learn how to code VBA. If you need to know about variable types, I suggest you Google VBA Variable types. As for the code itself, let me know if mine covers what you want. If yes, compare it to yours and think about the differences.
Sub RClick()
'Declare all Variables here'
Dim oC As Range, cA As String, cB As String
Dim wS As Worksheet
'Set the variable wS to be the active sheet
Set wS = ActiveSheet
'Loop through the A range and set the addresses to _
'the String type variables.
For Each oC In wS.Range("A1:A4")
cA = oC.Address
cB = oC.Offset(0, 1).Address
MsgBox "cA = " & cA & " | cB = " & cB
'the Immediate window shows displays better when programming, click _
'view and click Immediate window for debugging.
Debug.Print "cA = " & cA & " | cB = " & cB
Next oC
End Sub
Bookmarks