Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Numbering Function

How can I set up a cell to automatically increase it's numeric value by 1
every time the workbook is opened? Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,588
Default Numbering Function

In the "ThisWorkbook" module:

Private Sub Workbook_Open()
With ThisWorkbook.Sheet1.Range("A1")
.Value = .Value + 1
End With
End Sub


Tim

"mdougherty44" wrote in message
...
How can I set up a cell to automatically increase it's numeric value by 1
every time the workbook is opened? Thanks!



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Row Numbering Uddhava New Users to Excel 1 April 13th 10 07:54 PM
Numbering Kumar Excel Worksheet Functions 3 June 18th 09 04:55 AM
numbering Scorpio Excel Discussion (Misc queries) 6 February 6th 09 07:25 PM
PO with sequential numbering with start / end numbering [email protected] Excel Discussion (Misc queries) 1 April 24th 07 03:38 PM
Page Numbering Function? Stan Banner Excel Worksheet Functions 2 July 17th 05 03:44 PM


All times are GMT +1. The time now is 04:30 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"