I'm trying to merge every second cell going trough columns, starting at the 12.column till last used column, but the code isn't working. Can somebody point out a mistake that I'm making?
For i = 13 To lCol Step 2
Sheet9.Range(Sheet9.Cells(3, i), Sheet9.Cells(3, i + 1)).Merge
Next i
