Copy Excel data from columns to rows with VBA

后端 未结 6 1067
梦如初夏
梦如初夏 2021-01-21 20:16

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

6条回答
  •  隐瞒了意图╮
    2021-01-21 21:02

    Use Copy, then Paste Special+Transpose to turn your columns into rows:
    Selection.PasteSpecial Paste:=xlPasteValues, Transpose:=True

提交回复
热议问题