ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   generate different number (https://www.excelbanter.com/excel-worksheet-functions/205166-generate-different-number.html)

Paul

generate different number
 
hi,
is there a way that excel would generate a different number ( incremented by
one) each time a workbook is opened?
thanks
paul



Sheeloo[_2_]

generate different number
 
Yes but only by using VBA...The following will increment the value in cell L1
on Sheet1 by one every time the workbook is open.

Private Sub Workbook_Open()
Sheets("Sheet1").Range("L1").Select
ActiveCell.Value = ActiveCell.Value + 1

End Sub

"Paul" wrote:

hi,
is there a way that excel would generate a different number ( incremented by
one) each time a workbook is opened?
thanks
paul




Mike H

generate different number
 
Paul,

Have a look here

http://www.mcgimpsey.com/excel/udfs/sequentialnums.html

Mike

"Paul" wrote:

hi,
is there a way that excel would generate a different number ( incremented by
one) each time a workbook is opened?
thanks
paul





All times are GMT +1. The time now is 02:40 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com