I have a little experience with VBA, and I would really appreciate any help with this issue. In a basic sense, I need to convert 2 columns of data in sheet 1 to rows of data in
Use Copy, then Paste Special+Transpose to turn your columns into rows: Selection.PasteSpecial Paste:=xlPasteValues, Transpose:=True
Selection.PasteSpecial Paste:=xlPasteValues, Transpose:=True