Cita:
Iniciado por maue75 ... he visto que en las exportaciones no se resuelven las formulas a valor absoluto, sino que simplemente queda con #REF.
¡Jamás había leído algo así!...
Pero... ¡Bueno!... Empieza intentando con:
Código vb:
Ver originalSub a_PDFs()
Dim ws As Worksheet
Application.ScreenUpdating = False
For Each ws In Worksheets
ws.Copy
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:=ThisWorkbook.Path & "\" & _
Format(Timer / 10, "0.00") & ".pdf", Quality:=xlQualityStandard, _
IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False
ActiveWorkbook.Close False
Next
Application.ScreenUpdating = True
End Sub