D
Dave
This is what I have. I need some help as indicated in the comments:
Sub Combine()
Do ' Outer loop.
ActiveCell.Select
last = ActiveCell.Formula
'need to move one cell to the right here
ActiveCell.Select
first = ActiveCell.Formula
'need to move one cell to the right here
ActiveCell.FormulaR1C1 = last + ", " + first
' need to move back to column one here
' need to move down one row here
Loop Until EOF 'Will this stop at the first empty value in column one?
End Sub
Thank you in advance.
Sub Combine()
Do ' Outer loop.
ActiveCell.Select
last = ActiveCell.Formula
'need to move one cell to the right here
ActiveCell.Select
first = ActiveCell.Formula
'need to move one cell to the right here
ActiveCell.FormulaR1C1 = last + ", " + first
' need to move back to column one here
' need to move down one row here
Loop Until EOF 'Will this stop at the first empty value in column one?
End Sub
Thank you in advance.