Una duda de una macro
Tenia F12 EL nombre y la remplace por una Lista desplegable 11 como realizo esta macro por que cuando realizo el remplazo por ListBox11 me marca un error que puedo acer?
Dim Ruta As String, Nuevonombre As String
Ruta = "C:\Documents and Settings\rodolfo\Mis documentos\"
Do While IsEmpty(Range("F12").Value)
If Range("F12").Value = "" Then
celdaF12 = InputBox(Prompt:="Falta el dato en F12. Introduce dato: ")
Range("F12").Value = celdaF12
End If
Loop
Do While IsEmpty(Range("W4").Value)
If Range("W4").Value = "" Then
celdaW4 = InputBox(Prompt:="Falta el dato en W4. Introduce dato: ")
Range("W4").Value = celdaW4
End If
Loop
Nuevonombre = Ruta & Range("W4") & " " & ListBox11) & ".pdf" Worksheets("Factura").ExportAsFixedFormat Type:=xlTypePDF, Filename:=Nuevonombre, _ Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, _ OpenAfterPublish:=True