¿Alguien me puede decir el problema de mi macro?
Esta es mi macrono se cual es el error en la parte del comando range
Sub Macro1()
'
' Macro1 Macro
'
'
X = 50
While X < 100
If Cells(X, 1) <> value 6 Then
Range("Cells(X + 2, 1):Cells(X + 2, 17)").Select
Selection.Copy
Range("Cells(X, 2):Cells(X, 18)").Select
Selection.Paste
End If
X = X + 1
Wend
End Sub
Gracias
Sub Macro1()
'
' Macro1 Macro
'
'
X = 50
While X < 100
If Cells(X, 1) <> value 6 Then
Range("Cells(X + 2, 1):Cells(X + 2, 17)").Select
Selection.Copy
Range("Cells(X, 2):Cells(X, 18)").Select
Selection.Paste
End If
X = X + 1
Wend
End Sub
Gracias
1 Respuesta
Respuesta de cristhianlgl
1