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
Try this code:
Dim X() As Variant Dim Y() As Variant X = ActiveSheet.Range("YourRange").Value Y = Application.WorksheetFunction.Transpose(X)
Also check out this link: Transpose a range in VBA