Increase cell # by 1 upon page print??

5150

New Member
Joined
Feb 22, 2002
Messages
2
Is it possible to increase a cell # by 1 upon page print?? Example: 00001 in A20 then print the form, change number to 00002 for next printout.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
One way is to use the Before_Print event. Something like this:-



  • * Open the VB editor and click Ctrl+R to make sure the Project explorer is activated.
    * Double click the ThisWorkbook icon of your workbook. You may have to expand the tree in the project explorer to see this.
    * This code will increase the value of cell A1 in Sheet1 every time the Before_Print event is activated.

Code:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
Sheets("Sheet1").Range("A1").Value = Sheets("Sheet1").Range("A1").Value + 1
End Sub

The only problem with this is that the event is also fired when the print preview is selected so this code will also increase A1's value by 1 every time the user clicks Print Preview.

If this is a problem then have a look at my reply to an earlier post - http://www.mrexcel.com/board/viewtopic.php?topic=466&forum=2&7

However, that is a bit more complicated.

HTH,
D
 
Upvote 0

Forum statistics

Threads
1,214,927
Messages
6,122,311
Members
449,080
Latest member
jmsotelo

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