ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Worksheet numbering (https://www.excelbanter.com/excel-worksheet-functions/93906-worksheet-numbering.html)

leah

Worksheet numbering
 
Is it possible to number a working sheet and have that number automatically
change each time the excel document is opened?

Dave Peterson

Worksheet numbering
 
You can do it--but remember that the value doesn't get saved if the workbook is
closed without saving.

And lots of times, people open the wrong workbook and close it immediately.

But if you add this code to a General module of your workbook's project:

Option Explicit
Sub auto_open()

With ThisWorkbook.Worksheets("sheet1").Range("a1")
If IsNumeric(.Value) Then
.Value = .Value + 1
Else
.Value = 1 'start again??
End If
End With

ThisWorkbook.Save

End Sub

It adds one to the cell and saves the file--well if macros are running when the
user opens the workbook.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

leah wrote:

Is it possible to number a working sheet and have that number automatically
change each time the excel document is opened?


--

Dave Peterson

leah

Worksheet numbering
 
I am really sorry but I don't understand what I have to do to get it to work.
Please could you explain again in laymans terms?

Thanks


"Dave Peterson" wrote:

You can do it--but remember that the value doesn't get saved if the workbook is
closed without saving.

And lots of times, people open the wrong workbook and close it immediately.

But if you add this code to a General module of your workbook's project:

Option Explicit
Sub auto_open()

With ThisWorkbook.Worksheets("sheet1").Range("a1")
If IsNumeric(.Value) Then
.Value = .Value + 1
Else
.Value = 1 'start again??
End If
End With

ThisWorkbook.Save

End Sub

It adds one to the cell and saves the file--well if macros are running when the
user opens the workbook.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

leah wrote:

Is it possible to number a working sheet and have that number automatically
change each time the excel document is opened?


--

Dave Peterson


Marcelo

Worksheet numbering
 
hi, press ALT+F11, copy and paste the module that Dave gave you.

hope this helps
Regards from Brazil - going to the 6th
Marcelo

"leah" escreveu:

I am really sorry but I don't understand what I have to do to get it to work.
Please could you explain again in laymans terms?

Thanks


"Dave Peterson" wrote:

You can do it--but remember that the value doesn't get saved if the workbook is
closed without saving.

And lots of times, people open the wrong workbook and close it immediately.

But if you add this code to a General module of your workbook's project:

Option Explicit
Sub auto_open()

With ThisWorkbook.Worksheets("sheet1").Range("a1")
If IsNumeric(.Value) Then
.Value = .Value + 1
Else
.Value = 1 'start again??
End If
End With

ThisWorkbook.Save

End Sub

It adds one to the cell and saves the file--well if macros are running when the
user opens the workbook.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

leah wrote:

Is it possible to number a working sheet and have that number automatically
change each time the excel document is opened?


--

Dave Peterson


leah

Worksheet numbering
 
I have followed your instructions but still nothing is happening. I am
relatively new to formulas and therefore do not understand fully what I need
to do. Any additional help would be much appreciated.

"Marcelo" wrote:

hi, press ALT+F11, copy and paste the module that Dave gave you.

hope this helps
Regards from Brazil - going to the 6th
Marcelo

"leah" escreveu:

I am really sorry but I don't understand what I have to do to get it to work.
Please could you explain again in laymans terms?

Thanks


"Dave Peterson" wrote:

You can do it--but remember that the value doesn't get saved if the workbook is
closed without saving.

And lots of times, people open the wrong workbook and close it immediately.

But if you add this code to a General module of your workbook's project:

Option Explicit
Sub auto_open()

With ThisWorkbook.Worksheets("sheet1").Range("a1")
If IsNumeric(.Value) Then
.Value = .Value + 1
Else
.Value = 1 'start again??
End If
End With

ThisWorkbook.Save

End Sub

It adds one to the cell and saves the file--well if macros are running when the
user opens the workbook.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

leah wrote:

Is it possible to number a working sheet and have that number automatically
change each time the excel document is opened?

--

Dave Peterson


Dave Peterson

Worksheet numbering
 
This is a macro that runs each time the workbook is opened. So if you've set it
up ok, then you'll have to close and reopen the workbook to see the results.

If you're having trouble setting it up, make sure you read David McRitchie's
notes.

leah wrote:

I have followed your instructions but still nothing is happening. I am
relatively new to formulas and therefore do not understand fully what I need
to do. Any additional help would be much appreciated.

"Marcelo" wrote:

hi, press ALT+F11, copy and paste the module that Dave gave you.

hope this helps
Regards from Brazil - going to the 6th
Marcelo

"leah" escreveu:

I am really sorry but I don't understand what I have to do to get it to work.
Please could you explain again in laymans terms?

Thanks


"Dave Peterson" wrote:

You can do it--but remember that the value doesn't get saved if the workbook is
closed without saving.

And lots of times, people open the wrong workbook and close it immediately.

But if you add this code to a General module of your workbook's project:

Option Explicit
Sub auto_open()

With ThisWorkbook.Worksheets("sheet1").Range("a1")
If IsNumeric(.Value) Then
.Value = .Value + 1
Else
.Value = 1 'start again??
End If
End With

ThisWorkbook.Save

End Sub

It adds one to the cell and saves the file--well if macros are running when the
user opens the workbook.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

leah wrote:

Is it possible to number a working sheet and have that number automatically
change each time the excel document is opened?

--

Dave Peterson


--

Dave Peterson


All times are GMT +1. The time now is 07:27 AM.

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