Saltar al contenido

Guardar archivo en pdf y con el nombre del caption de un label


Recommended Posts

publicado

Buenos dias 

Tengo una rutina que me guarda los datos de un formulario a dos hojas excel dentro del mismo libro y necesitaría que en esa misma rutina me creara un archivo pdf con  el nombre del label "lb_parte"

Private Sub Imprimirparte2()
Dim final As Long
Dim fila As Integer
With ThisWorkbook

 
        
       
       .Sheets("PARTE DE TRABAJO").Range("r2").ClearContents
       .Sheets("PARTE DE TRABAJO").Range("d2").ClearContents
       .Sheets("PARTE DE TRABAJO").Range("g2").ClearContents
       .Sheets("PARTE DE TRABAJO").Range("l2").ClearContents
       .Sheets("PARTE DE TRABAJO").Range("c3:o4").ClearContents
       .Sheets("PARTE DE TRABAJO").Range("b8").ClearContents
       .Sheets("PARTE DE TRABAJO").Range("b10").ClearContents
       .Sheets("PARTE DE TRABAJO").Range("b12").ClearContents
       .Sheets("PARTE DE TRABAJO").Range("L6:L12").ClearContents
       .Sheets("PARTE DE TRABAJO").Range("O6:O13").ClearContents
       .Sheets("PARTE DE TRABAJO").Range("t12:u13").ClearContents
       .Sheets("PARTE DE TRABAJO").Range("a18:a30").ClearContents
       .Sheets("PARTE DE TRABAJO").Range("j18:j30").ClearContents
       .Sheets("CHECKLIST PAR").Range("apar").ClearContents
        fila = 18

        final = .Sheets("PARTE DE TRABAJO").Cells(Rows.Count, 1).End(3).Row + 1
        

final = fila


                .Sheets("PARTE DE TRABAJO").Range("D2").Value = Me.cbo_not
                .Sheets("PARTE DE TRABAJO").Range("r2").Value = Me.lb_parte
                .Sheets("CHECKLIST PAR").Range("T3").Value = Me.cbo_not
                .Sheets("CHECKLIST PAR").Range("T1").Value = Me.lb_parte
                .Sheets("PARTE DE TRABAJO").Range("C3").Value = Me.txt_descrip
                .Sheets("PARTE DE TRABAJO").Range("G2").Value = Me.txt_fecha
                .Sheets("PARTE DE TRABAJO").Range("L2").Value = Me.cbo_equipo
                .Sheets("PARTE DE TRABAJO").Range("B8").Value = Me.eje1
                .Sheets("PARTE DE TRABAJO").Range("B10").Value = Me.eje2
                .Sheets("PARTE DE TRABAJO").Range("B12").Value = Me.eje3
                .Sheets("PARTE DE TRABAJO").Range("T12").Value = Me.TextBox1
                .Sheets("CHECKLIST PAR").Range("T5").Value = Me.txt_fecha
                .Sheets("CHECKLIST PAR").Range("T2").Value = Me.cbo_equipo
                .Sheets("CHECKLIST PAR").Range("D20").Value = Me.eje1
                .Sheets("PARTE DE TRABAJO").Range("L6").Value = Me.ck_brazalete
                .Sheets("PARTE DE TRABAJO").Range("L7").Value = Me.CheckBox2 ' ANTIACIDOS
                .Sheets("PARTE DE TRABAJO").Range("L8").Value = Me.CheckBox3 'TERMICOS
                .Sheets("PARTE DE TRABAJO").Range("L9").Value = Me.CheckBox4 'AGUA
                .Sheets("PARTE DE TRABAJO").Range("L10").Value = Me.CheckBox5 'ESTANCAS
                .Sheets("PARTE DE TRABAJO").Range("L11").Value = Me.CheckBox6 'QUIMICO
                .Sheets("PARTE DE TRABAJO").Range("L12").Value = Me.CheckBox13 ' ARNES
                .Sheets("PARTE DE TRABAJO").Range("O6").Value = Me.CheckBox8 'CHALECO
                .Sheets("PARTE DE TRABAJO").Range("O7").Value = Me.CheckBox9 'PPI
                .Sheets("PARTE DE TRABAJO").Range("O8").Value = Me.CheckBox10 'ABEK
                .Sheets("PARTE DE TRABAJO").Range("O9").Value = Me.CheckBox11 'ERA
                .Sheets("PARTE DE TRABAJO").Range("O10").Value = Me.CheckBox12 'ERSA
                .Sheets("PARTE DE TRABAJO").Range("O11").Value = Me.CheckBox8 'POLVO
                .Sheets("PARTE DE TRABAJO").Range("O12").Value = Me.CheckBox14 ' EXTINTOR
                .Sheets("PARTE DE TRABAJO").Range("O13").Value = Me.CheckBox15 ' EXPLOSIMETRO
                
            For i = 0 To Me.ListBox1.ListCount - 1
                .Sheets("PARTE DE TRABAJO").Cells(final, "A") = Me.ListBox1.List(i, 0) & " " & Me.ListBox1.List(i, 1) ' se tiene que grabar en la celda A18
               ' .Worksheets("Hoja1").Cells(final, "D") = Me.ListBox1.List(i, 1) ' se tiene que grabar en la celda D18
                .Sheets("PARTE DE TRABAJO").Cells(final, "j") = Me.ListBox1.List(i, 9) ' se tiene que grabar en la celda F18
                
                final = final + 1
            Next
            final = 41
'
           For J = 0 To Me.ListBox2.ListCount - 1
                .Sheets("PARTE DE TRABAJO").Cells(final, "H") = Me.ListBox2.List(J, 0)    ' se tiene que grabar en la celda N42
                .Sheets("PARTE DE TRABAJO").Cells(final, "N") = Me.ListBox2.List(J, 1)    ' se tiene que grabar en la celda P42
                final = final + 1
            Next
            
            final = 8
            For i = 0 To Me.ListBox1.ListCount - 1
                .Sheets("CHECKLIST PAR").Cells(final, "a") = Me.ListBox1.List(i, 0) & " " & Me.ListBox1.List(i, 1)
                .Sheets("CHECKLIST PAR").Cells(final, "e") = Me.ListBox1.List(i, 2) ' se tiene que grabar en la celda D18
                .Sheets("CHECKLIST PAR").Cells(final, "f") = Me.ListBox1.List(i, 3) ' se tiene que grabar en la celda F18
                .Sheets("CHECKLIST PAR").Cells(final, "g") = Me.ListBox1.List(i, 4)
                .Sheets("CHECKLIST PAR").Cells(final, "h") = Me.ListBox1.List(i, 5)
                .Sheets("CHECKLIST PAR").Cells(final, "i") = Me.ListBox1.List(i, 6)
                .Sheets("CHECKLIST PAR").Cells(final, "p") = Me.ListBox1.List(i, 7)
                .Sheets("CHECKLIST PAR").Cells(final, "r") = Me.ListBox1.List(i, 8)
                
                
                final = final + 1
            Next
 
'Establecer área de impresión y enviar al impresor.

 
.Sheets("PARTE DE TRABAJO").PageSetup.PrintArea = "parte"
.Sheets("PARTE DE TRABAJO").PrintOut Copies:=1, Collate:=True, IgnorePrintAreas:=False
.Sheets("CHECKLIST PAR").PageSetup.PrintArea = "apar"
.Sheets("CHECKLIST PAR").PrintOut Copies:=1, Collate:=True, IgnorePrintAreas:=False

               
            End With

End Sub

 

publicado

Saludos, supongo que este código puedes añadir para guardar como pdf, usando lo que esté en la label.

archivo = label.caption
ActiveSheet.Range("a1:d20").ExportAsFixedFormat Type:=xlTypePDF, _
Filename:=ThisWorkbook.Path & "\archivo.pdf", quality:=xlQualityStandard, openafterpublish:=True

Debes especificar tu rango

espero que te sirva

Archivado

Este tema está ahora archivado y está cerrado a más respuestas.

  • 109 ¿Te parecen útiles los tips de las funciones? (ver tema completo)

    1. 1. ¿Te parecen útiles los tips de las funciones?


      • No
      • Ni me he fijado en ellos

  • Ayúdanos a mejorar la comunidad

    • Donaciones recibidas este mes: 0.00 EUR
      Objetivo: 130.00 EUR
  • Archivos

  • Estadísticas de descargas

    • Archivos
      188
    • Comentarios
      98
    • Revisiones
      29

    Más información sobre "Cambios en el Control Horario"
    Última descarga
    Por pegones1

    4    1

  • Crear macros Excel

  • Mensajes

    • Hola, veo que tienes 365, así que esta forma funcionará   Almacen.xlsx
    • Buenos días  @LeandroA espero estes bien Tengo un caso idéntico al planteado en la siguiente pregunta: Sin embargo, a diferencia de quien planteo originalmente la pregunta al correr el código no obtengo ningún resultado podrían ayudarme a resolver este inconveniente y que al hacer click en el Botón Guardar (CommandButton3) del Formulario RCS (frmrcs) el archivo pdf quede configurado con orientación vertical, márgenes superior, inferior, derecho e izquierdo = 1 y en página tamaño carta. Si acaso influye uso Microsoft Excel LTSC MSO (versión 2209 Compilación16.0.1.15629.20200) de 64 bits Mucho le sabre agradecer la ayuda que me pueda dar  RCS PRUEBA - copia.xlsm
    • @JSDJSDCon gusto mi estimado Para la opción 1: Sub Surtirhastadondealcanse() Dim ws As Worksheet Set ws = ThisWorkbook.Sheets(1) Dim filaInicio As Integer: filaInicio = 4 Dim filaFin As Integer: filaFin = 7 Dim colInventario As Integer: colInventario = 2 Dim colSolicitudesInicio As Integer: colSolicitudesInicio = 4 ' Columna C Dim colResultadoInicio As Integer: colResultadoInicio = 9 ' Columna I Dim colTotalSurtido As Integer: colTotalSurtido = 12 ' Columna L Dim colFinalInventario As Integer: colFinalInventario = 13 ' Columna M Dim numClientes As Integer: numClientes = 3 Dim fila As Integer, i As Integer For fila = filaInicio To filaFin Dim inventario As Double inventario = Val(ws.Cells(fila, colInventario).Value) Dim solicitudes(1 To 3) As Double Dim surtido(1 To 3) As Variant Dim totalSurtido As Double: totalSurtido = 0 ' Leer solicitudes For i = 1 To numClientes If IsNumeric(ws.Cells(fila, colSolicitudesInicio + i - 1).Value) Then solicitudes(i) = CDbl(ws.Cells(fila, colSolicitudesInicio + i - 1).Value) Else solicitudes(i) = 0 End If surtido(i) = "POR FALTA STOCK" Next i ' Surtir de acuerdo al inventario disponible For i = 1 To numClientes If solicitudes(i) > 0 Then If inventario >= solicitudes(i) Then surtido(i) = solicitudes(i) inventario = inventario - solicitudes(i) totalSurtido = totalSurtido + solicitudes(i) ElseIf inventario > 0 Then surtido(i) = inventario totalSurtido = totalSurtido + inventario inventario = 0 Else surtido(i) = "POR FALTA STOCK" End If End If Next i ' Escribir resultados en las columnas correspondientes para cada cliente For i = 1 To numClientes With ws.Cells(fila, colResultadoInicio + i - 1) If surtido(i) = "POR FALTA STOCK" Then .Value = surtido(i) .Font.Color = vbRed Else .Value = surtido(i) .Font.Color = vbBlack End If End With Next i ' Escribir total surtido y existencia final ws.Cells(fila, colTotalSurtido).Value = totalSurtido ws.Cells(fila, colFinalInventario).Value = inventario Next fila MsgBox "Resultado surtido cargado con éxito...", vbInformation End Sub Para la opción 2:   Sub surtirenpartesiguales() Dim ws As Worksheet Set ws = ThisWorkbook.Sheets(1) Dim filaInicio As Integer: filaInicio = 13 Dim filaFin As Integer: filaFin = 16 Dim colInventario As Integer: colInventario = 2 Dim colSolicitudesInicio As Integer: colSolicitudesInicio = 4 ' Columna C Dim colResultadoInicio As Integer: colResultadoInicio = 9 ' Columna I Dim colTotalSurtido As Integer: colTotalSurtido = 12 ' Columna L Dim colFinalInventario As Integer: colFinalInventario = 13 ' Columna M Dim numClientes As Integer: numClientes = 3 Dim fila As Integer, i As Integer For fila = filaInicio To filaFin Dim inventario As Double inventario = Val(ws.Cells(fila, colInventario).Value) Dim solicitudes(1 To 3) As Double Dim surtido(1 To 3) As Variant Dim totalSurtido As Double: totalSurtido = 0 Dim totalPedido As Double: totalPedido = 0 ' Leer solicitudes For i = 1 To numClientes If IsNumeric(ws.Cells(fila, colSolicitudesInicio + i - 1).Value) Then solicitudes(i) = CDbl(ws.Cells(fila, colSolicitudesInicio + i - 1).Value) totalPedido = totalPedido + solicitudes(i) Else solicitudes(i) = 0 End If surtido(i) = 0 Next i ' Si hay suficiente inventario, surtir lo que el cliente pide If inventario >= totalPedido Then For i = 1 To numClientes If solicitudes(i) > 0 And inventario >= solicitudes(i) Then surtido(i) = solicitudes(i) inventario = inventario - solicitudes(i) totalSurtido = totalSurtido + solicitudes(i) End If Next i Else ' Reparto base igualitario Dim baseSurtido As Long baseSurtido = Int(inventario / numClientes) For i = 1 To numClientes If solicitudes(i) > 0 Then If solicitudes(i) <= baseSurtido Then surtido(i) = solicitudes(i) inventario = inventario - solicitudes(i) totalSurtido = totalSurtido + solicitudes(i) Else surtido(i) = baseSurtido inventario = inventario - baseSurtido totalSurtido = totalSurtido + baseSurtido End If End If Next i ' Repartir sobrante restante uno por uno, respetando lo pedido Do While inventario > 0 For i = 1 To numClientes If surtido(i) < solicitudes(i) Then surtido(i) = surtido(i) + 1 totalSurtido = totalSurtido + 1 inventario = inventario - 1 If inventario = 0 Then Exit For End If Next i Loop End If ' Escribir resultados en las columnas correspondientes para cada cliente For i = 1 To numClientes With ws.Cells(fila, colResultadoInicio + i - 1) If surtido(i) = 0 Then .Value = "POR FALTA STOCK" .Font.Color = vbRed Else .Value = surtido(i) .Font.Color = vbBlack End If End With Next i ' Escribir total surtido y existencia final ws.Cells(fila, colTotalSurtido).Value = totalSurtido ws.Cells(fila, colFinalInventario).Value = inventario Next fila MsgBox "Resultado surtido cargado con éxito...", vbInformation End Sub Saludos, Diego
    • Buenos dias.  Estoy trabajando en una hoja para poder llevar un control de un pequeño almacén.  Tengo un pedido con varias líneas y "lotes" y necesito sacar las ubicaciones que coincidan con la referencia y lote que pone en el pedido. El problema viene cuando tengo la misma referencia y mismo lote en ubicaciones diferentes y necesito sacar la información en columnas diferentes. No se si  me he explicado bien, pero creo que con el ejemplo adjunto se entiende mejor. Agradecería mucho si me pudieran ayudar  Libro1.xlsx
    • Exelente solución mil gracias 
  • Visualizado recientemente

    • No hay usuarios registrado para ver esta página.
×
×
  • Crear nuevo...

Información importante

Echa un vistazo a nuestra política de cookies para ayudarte a tener una mejor experiencia de navegación. Puedes ajustar aquí la configuración. Pulsa el botón Aceptar, si estás de acuerdo.