Hallo
ik zoek nog een formule om mijn vba code te vervolledigen. Op blad 1 (invullen!) staan alle buttons. De bedoeling is om naar wens af te printen wat ik nodig heb. Nu heb ik 1 tricky werkblad: Adreslabels. Dit hangt af van het aantal paletten. dit staat op blad 1 (invullen) in cel B7 (aantal paletten). Als er bv. 1 staat moet hij range A1 tem I38 afdrukken, bij 2 A1 tem I76. Dus bij de "I" komen er telkens 38 rijen bij per extra palet.
Hier is de code dat ik nu al heb:
Option Explicit
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Bestelbon.[A1:J50].PrintOut , , 1
Application.ScreenUpdating = True
End Sub
Private Sub CommandButton2_Click()
Application.ScreenUpdating = False
Paklijst.[A1:J50].PrintOut , , 1
Application.ScreenUpdating = True
End Sub
Private Sub CommandButton3_Click()
Application.ScreenUpdating = False
Verzendnota.[A1:J50].PrintOut , , 2
Application.ScreenUpdating = True
End Sub
Private Sub CommandButton4_Click()
Application.ScreenUpdating = False
Adreslabel.[A1:I38].PrintOut , , 1 (range: hier zou het aantal paletten vanaf hangen)
Application.ScreenUpdating = True
End Sub
Private Sub CommandButton5_Click()
Application.ScreenUpdating = False
Transportopdracht.[A1:C38].PrintOut , , 1
Application.ScreenUpdating = True
End Sub
Private Sub CommandButton6_Click()
Application.ScreenUpdating = False
Afhaalopdracht.[A1:C17].PrintOut , , 1
Application.ScreenUpdating = True
End Sub
Private Sub CommandButton7_Click()
Application.ScreenUpdating = False
Factuur.[A1:J56].PrintOut , , 1
Application.ScreenUpdating = True
End Sub
ik zoek nog een formule om mijn vba code te vervolledigen. Op blad 1 (invullen!) staan alle buttons. De bedoeling is om naar wens af te printen wat ik nodig heb. Nu heb ik 1 tricky werkblad: Adreslabels. Dit hangt af van het aantal paletten. dit staat op blad 1 (invullen) in cel B7 (aantal paletten). Als er bv. 1 staat moet hij range A1 tem I38 afdrukken, bij 2 A1 tem I76. Dus bij de "I" komen er telkens 38 rijen bij per extra palet.
Hier is de code dat ik nu al heb:
Option Explicit
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Bestelbon.[A1:J50].PrintOut , , 1
Application.ScreenUpdating = True
End Sub
Private Sub CommandButton2_Click()
Application.ScreenUpdating = False
Paklijst.[A1:J50].PrintOut , , 1
Application.ScreenUpdating = True
End Sub
Private Sub CommandButton3_Click()
Application.ScreenUpdating = False
Verzendnota.[A1:J50].PrintOut , , 2
Application.ScreenUpdating = True
End Sub
Private Sub CommandButton4_Click()
Application.ScreenUpdating = False
Adreslabel.[A1:I38].PrintOut , , 1 (range: hier zou het aantal paletten vanaf hangen)
Application.ScreenUpdating = True
End Sub
Private Sub CommandButton5_Click()
Application.ScreenUpdating = False
Transportopdracht.[A1:C38].PrintOut , , 1
Application.ScreenUpdating = True
End Sub
Private Sub CommandButton6_Click()
Application.ScreenUpdating = False
Afhaalopdracht.[A1:C17].PrintOut , , 1
Application.ScreenUpdating = True
End Sub
Private Sub CommandButton7_Click()
Application.ScreenUpdating = False
Factuur.[A1:J56].PrintOut , , 1
Application.ScreenUpdating = True
End Sub
Laatst bewerkt: