No encuentro el error de Sintaxis de macro
Para dante
Un favor podrías ayudarme a encontrar el error en el código, ya que me aparece error de compilación, puse en negritas donde aparece el error .Gracias
Sub INGLESAboutUser()
Set h1 = Sheets("Hoja1") 'hoja origen con datos
Set h2 = Sheets("Hoja2") 'hoja destino
fila = 2 'fila inicial de datos
u2 = h2.Range("G" & Rows.Count).End(xlUp).Row
If u2 < 32 Then u2 = 32
h2.Range("A32:I" & u2).ClearContents
u1 = h1.Range("G" & Rows.Count).End(xlUp).Row
cols = Array("B", "D", "G", "H", "I")
For i = fila To u1
If h1.Cells(i,"G") > 0 Then
For col = LBound(cols) To UBound(cols)
h1.Cells(i,cols(col)).Copy h2.Cells(u2,cols(col))
Next
u2 = u2 + 1
End If
Next
MsgBox "Registros copiados"
End Sub
1 Respuesta
Respuesta de Dante Amor
2