DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Workbook_BeforePrint(Cancel As Boolean)
Range("a1").Value = Range("a1").Value + 1
With ActiveSheet
.PageSetup.CenterFooter = .Range("a1").Text
End With
End Sub
Sub Yazdır()
On Error Resume Next
sayi = InputBox("Kaç kopya istiyorsunuz?", "Bilgi", 10)
If sayi = "" Then Exit Sub
For i = 1 To sayi
ActiveSheet.PageSetup.RightHeader = i
ActiveWindow.SelectedSheets.PrintOut From:=1, To:=1, Copies:=1, Collate:=True
Next i
son:
Exit Sub
End Sub