I have to create a Macro which lets me Concatenate two columns at a time in a given range. For example: In range C1:Z200, I want to concatenate Column C&D, E&F, G&H and so on. How do I do it. This is my current code which only concatenate first two columns..rest remains the same.
Set Range = ActiveSheet.Range("C1:Z100")
For Each c In Range
    c.Select
    ActiveCell.FormulaR1C1 = ActiveCell & " " & ActiveCell.Offset(0, 1)
    ActiveCell.Offset(0, 1).Activate
    Selection.Clear
    ActiveCell.Offset(0, 2).Activate
Next c
 
     
     
     
    