Error 1004 - Paste de la clase Worksheet
Publicado por Nicolas (1 intervención) el 03/05/2018 13:40:18
Buenas, me arroja este error... hace 3 dias que intento arreglarlo pero no puedo...
"Se ha producido el error ´1004´ en tiempo de ejecucion:
Error en el metodo Paste de la clase Worksheet"
Es justo en "ActiveSheet.Paste"
Gracias!
"Se ha producido el error ´1004´ en tiempo de ejecucion:
Error en el metodo Paste de la clase Worksheet"
Es justo en "ActiveSheet.Paste"
Gracias!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Sheets("Viajes Ema").Select
Range("A1").Select
Selection.AutoFilter
Ufila = Range("A1048576").End(xlUp).Row
Range("A2", "Z" & Ufila).Select
Selection.Copy
Application.CutCopyMode = False
Windows("Viajes Hoy.xlsx").Activate
Ufila = Range("A1048576").End(xlUp).Row
Range("A" & (Ufila + 1)).Select
ActiveSheet.Paste
Application.CutCopyMode = False
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Valora esta pregunta
0