Dim NextCol As Long
NextCol = Cells(1, Columns.Count).End(xlToLeft).Column
Cells(1, NextCol).Copy Cells(1, NextCol + 1)
Cells(1, NextCol).Value = Cells(1, NextCol).Value
Adjust this to suit your range
Dim NextCol As Long
NextCol = Cells(1, Columns.Count).End(xlToLeft).Column
Range(Cells(1, NextCol), Cells(Rows.Count, NextCol).End(xlUp)).Copy Cells(1, _
NextCol + 1)
Range(Cells(1, NextCol), Cells(Rows.Count, NextCol).End(xlUp)).Value = Range(Cells(1, NextCol), Cells(Rows.Count, NextCol).End(xlUp)).Value
Bookmarks