Guardar-reemplazar-cancelar

prueba

New Member
Joined
Sep 27, 2011
Messages
1
:warning::hammer::hammer:Hola a todos. Me gustaria informarme de como puedo resolver el error 1004 que me da cuando ejecuto el macro guardar archivo, que tengo creado:
Resulta que cuando lo ejecuto me guarda el archivo correctamente, pero supongamos que el archivo que tengo lla lo tengo guardado anteriormente entonces me sale un anunciado comunicandome que si quiero reemplazarlo y me da la opcion de marcar SI, NO o CANCELAR. Bueno si digo que SI me lo reemplaza perfertamene pero si digo que NO me da el error 1004 y si dijo CANCELAR tambien me da el error 1004,
Se ha producido el error ¨1004¨en tiempo:
Error metodo ¨SaveAs de objeto¨_Worbook¨

El Macro que tengo creado es el siguiente:

Sub Botón1_Haga_clic_en()
Dim ApellidosFichero As String
Dim Nºfactura As String
ApellidosFichero = Range("F10").Value
ChDir "C:RESAMFACTURAS"
Nºfactura = Range("B13").Value
ActiveWorkbook.SaveAs Filename:=ApellidosFichero & "-" & Nºfactura
MsgBox "Fichero" & " guardado"

' Botón1_Haga_clic_en Macro
End Sub
Gracias por cualquier informacion que me podais dar,

Saludo
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Hay varios caminos:

1. Ignorar las alertas:

Application.DisplayAlerts = False

-- tu codigo

Application.DisplayAlerts = True

2. Ignorar el error

On Error Resume Next

3. Atrapar el error y hacer algo(2 opciones)

a. On Error Goto

b. On Error GoTo ErrHandler


Saludos
 
Upvote 0

Forum statistics

Threads
1,224,505
Messages
6,179,151
Members
452,891
Latest member
JUSTOUTOFMYREACH

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top