This should do it:
Option Explicit
Sub ReformatSKUs()
Dim FR As Long, LR As Long, NR As Long, Rw As Long
Application.ScreenUpdating = False
LR = Range("A" & Rows.Count).End(xlUp).Row
NR = 1
FR = 1
For Rw = 1 To LR
If Rw <> LR Then
If Left(Range("A" & Rw + 1), 3) = "SKU" Then
Range("A" & FR, "A" & Rw).Copy
Range("C" & NR).PasteSpecial xlPasteAll, Transpose:=True
NR = NR + 1
FR = Rw + 1
End If
Else
Range("A" & FR, "A" & Rw).Copy
Range("C" & NR).PasteSpecial xlPasteAll, Transpose:=True
End If
Next Rw
Application.CutCopyMode = False
Application.ScreenUpdating = True
End Sub
Bookmarks