Sub Button1_Click()
For i = 1 To 6
Worksheets("SHIPMENT OI").Range("B2:B50").Select
Selection.Copy
Worksheets("SHIPMENT OI").Range("B51").Select
Selection.PasteSpecial Paste:=xlPasteValues, Transpose:=True
Worksheets("SHIPMENT OI").Range("B50").Select
Application.CutCopyMode = False
Next
End Sub
Hi Everyone,
may i know how do i maintain the code above and copy my cells color together?
aiming to transpose my cells and place them below along with the cells color/format.
Need some advice
Thanks in advance!
VBA Transpose Data done but cells copied without its cell color