You are on page 1of 1

1.

)
2.)
3.)
4.)
5.)
6.)
7.)
8.)

Selecc. la Hoja "Factura"


Selecc. el rango "K20:K27"
Copiar (Ctrl + C)
Selecc. la Hoja "Hoja2"
Selecc. la celda "A5"
Ctrl + flecha abajo
Flecha abajo
Pegado especial, activando:
"Formato de nms y valores"
"Transponer".
9.) ESC
Sub RegistroFactura()
Sheets("Factura").Select
Range("K20:K27").Select
Selection.Copy
Sheets("Hoja2").Select
Range("A5").Select
Selection.End(xlDown).Select
ActiveCell.Offset(1, 0).Select
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=True
Application.CutCopyMode = False
End Sub

You might also like