Macro para copiar columnas a otra hoja
.:: Para dante amor ::.
Hola! Una consulta, actualmente la macro copia la columna "A" a otra hoja, pero ahora necesito que copie la columna "A" y la "B" a otra hoja, la podrías modificar por favor!
Sub Copiar_Filas()
'Por.Dante Amor
Set l1 = ThisWorkbook
Set h1 = l1.ActiveSheet
Set l2 = Workbooks.Add
Set h2 = l2.Sheets(1)
col = "E"
'
j = 2
Set r = h1.Columns(col)
Set b = r.Find("OK", LookAt:=xlWhole, LookIn:=xlValues)
If Not b Is Nothing Then
celda = b.Address
Do
'detalle
h1.Range("A" & b.Row).Copy h2.Range("A" & j)
j = j + 1
Set b = r.FindNext(b)
Loop While Not b Is Nothing And b.Address <> celda
End If
MsgBox "xxxxxxxx"
End Sub
1 respuesta
Respuesta de Adriel Ortiz Mangia
1