Sub cmd() Dim lastName As String Dim firstName As String firstName = "first" lastName = "last" Debug.Print lastName & ", " & firstName End Sub