Sequential number printed on each purchase order printed?

gsides

New Member
Joined
Mar 22, 2019
Messages
1
I have a worksheet that I created that is a blank purchase order for my organization.

Someone prints multiple copies of the purchase order worksheet. Then the person has to write in a sequential number on each purchase order.

Is there a way to have Excel number each purchase order?
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
This code should do the trick. I've commented the code you would need to change to have the number appear where you want it on the sheet.

Code:
Sub PrintWithSequentialNumbers()
Dim SeqNum As Range: Set SeqNum = Range("A1") 'Change to wherever you want your sequential number to be
Dim Cnt As Integer: Cnt = 1
Dim PagesToPrint As Integer: PagesToPrint = Application.InputBox("How many pages do you want to print?")
Dim ws As Worksheet: Set ws = ActiveSheet


For i = 1 To PagesToPrint
    SeqNum.Value = Cnt
    ws.PrintOut 1, 1, 1
    Cnt = Cnt + 1
Next i


End Sub
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,436
Members
449,083
Latest member
Ava19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top