Macro que me da error 1004
Buenos días, he encontrado esta macro de búsqueda por hojas en esta web que me viene muy bien, pero la he probado en mi BD, y al darle el dato a buscar me sale error 1004. (ActivateSheet. Next.Select)
¿Alguien me podría ayudar?
Sub buscahoja()
x = InputBox("Ingrese el D.N.I. a buscar")
s = ActiveSheet.Name
Application.ScreenUpdating = fase
Sheets(1).Activate
While ActiveSheet.Name <> x
If ActiveSheet.Index = Sheets.Count Then
MsgBox ("No existe D.N.I." & x)
Sheets(s).Activate
GoTo fin
End If
ActivateSheet.Next.Select
Wend
fin:
Application.ScreenUpdating = True
End Sub
Gracias de antemano
¿Alguien me podría ayudar?
Sub buscahoja()
x = InputBox("Ingrese el D.N.I. a buscar")
s = ActiveSheet.Name
Application.ScreenUpdating = fase
Sheets(1).Activate
While ActiveSheet.Name <> x
If ActiveSheet.Index = Sheets.Count Then
MsgBox ("No existe D.N.I." & x)
Sheets(s).Activate
GoTo fin
End If
ActivateSheet.Next.Select
Wend
fin:
Application.ScreenUpdating = True
End Sub
Gracias de antemano
1 respuesta
Respuesta de vorkosigan
1