ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   How do I renumber a worksheet (https://www.excelbanter.com/excel-programming/385338-how-do-i-renumber-worksheet.html)

GaryMay

How do I renumber a worksheet
 
How do I renumber (reindex) a sheet using VBA.

Example:
sheet20(name) to sheet1(name)

Tom Ogilvy

How do I renumber a worksheet
 
In the project explorer in the VBE, select the entry for the sheet.

make the properties window visible. Change the (name) property.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

How do I renumber (reindex) a sheet using VBA.

Example:
sheet20(name) to sheet1(name)


GaryMay

How do I renumber a worksheet
 
Thanks, that works, but I have a need to be able to do this through VB code.
Do you know how?

"Tom Ogilvy" wrote:

In the project explorer in the VBE, select the entry for the sheet.

make the properties window visible. Change the (name) property.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

How do I renumber (reindex) a sheet using VBA.

Example:
sheet20(name) to sheet1(name)


Tom Ogilvy

How do I renumber a worksheet
 
http://www.cpearson.com/excel/codemods.htm

look toward the bottom of the page. The argument to vbcomponents is the
codename.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

Thanks, that works, but I have a need to be able to do this through VB code.
Do you know how?

"Tom Ogilvy" wrote:

In the project explorer in the VBE, select the entry for the sheet.

make the properties window visible. Change the (name) property.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

How do I renumber (reindex) a sheet using VBA.

Example:
sheet20(name) to sheet1(name)


GaryMay

How do I renumber a worksheet
 
I'm sorry, I still don't get it. I'm just looking for a small piece of code
that will change a sheet number from say sheet1 to sheet10.

"Tom Ogilvy" wrote:

http://www.cpearson.com/excel/codemods.htm

look toward the bottom of the page. The argument to vbcomponents is the
codename.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

Thanks, that works, but I have a need to be able to do this through VB code.
Do you know how?

"Tom Ogilvy" wrote:

In the project explorer in the VBE, select the entry for the sheet.

make the properties window visible. Change the (name) property.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

How do I renumber (reindex) a sheet using VBA.

Example:
sheet20(name) to sheet1(name)


Gord Dibben

How do I renumber a worksheet
 
Gary

In VBE you have Sheet1(sheetname) and you want to change the Sheet1 index name.

Run this macro......code from Chip's site.

Sub change()
ThisWorkbook.VBProject.VBComponents("Sheet1").Name = "NewCodeName"
End Sub

Now you have NewCodeName(sheetname)


Gord Dibben MS Excel MVP

On Thu, 15 Mar 2007 08:24:33 -0700, GaryMay
wrote:

I'm sorry, I still don't get it. I'm just looking for a small piece of code
that will change a sheet number from say sheet1 to sheet10.

"Tom Ogilvy" wrote:

http://www.cpearson.com/excel/codemods.htm

look toward the bottom of the page. The argument to vbcomponents is the
codename.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

Thanks, that works, but I have a need to be able to do this through VB code.
Do you know how?

"Tom Ogilvy" wrote:

In the project explorer in the VBE, select the entry for the sheet.

make the properties window visible. Change the (name) property.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

How do I renumber (reindex) a sheet using VBA.

Example:
sheet20(name) to sheet1(name)



Tom Ogilvy

How do I renumber a worksheet
 
Figure if you tell him the same thing 3 or 4 times he will pick it up?

--
Regards,
Tom Ogilvy

"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Gary

In VBE you have Sheet1(sheetname) and you want to change the Sheet1 index
name.

Run this macro......code from Chip's site.

Sub change()
ThisWorkbook.VBProject.VBComponents("Sheet1").Name = "NewCodeName"
End Sub

Now you have NewCodeName(sheetname)


Gord Dibben MS Excel MVP

On Thu, 15 Mar 2007 08:24:33 -0700, GaryMay

wrote:

I'm sorry, I still don't get it. I'm just looking for a small piece of
code
that will change a sheet number from say sheet1 to sheet10.

"Tom Ogilvy" wrote:

http://www.cpearson.com/excel/codemods.htm

look toward the bottom of the page. The argument to vbcomponents is the
codename.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

Thanks, that works, but I have a need to be able to do this through VB
code.
Do you know how?

"Tom Ogilvy" wrote:

In the project explorer in the VBE, select the entry for the sheet.

make the properties window visible. Change the (name) property.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

How do I renumber (reindex) a sheet using VBA.

Example:
sheet20(name) to sheet1(name)





GaryMay

How do I renumber a worksheet
 
Ogilvy,

You haven't told me the same thing 3 or 4 times you rude SOB. By the way,
you still haven't answered the questioned. Have a nice day.

"Tom Ogilvy" wrote:

Figure if you tell him the same thing 3 or 4 times he will pick it up?

--
Regards,
Tom Ogilvy

"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Gary

In VBE you have Sheet1(sheetname) and you want to change the Sheet1 index
name.

Run this macro......code from Chip's site.

Sub change()
ThisWorkbook.VBProject.VBComponents("Sheet1").Name = "NewCodeName"
End Sub

Now you have NewCodeName(sheetname)


Gord Dibben MS Excel MVP

On Thu, 15 Mar 2007 08:24:33 -0700, GaryMay

wrote:

I'm sorry, I still don't get it. I'm just looking for a small piece of
code
that will change a sheet number from say sheet1 to sheet10.

"Tom Ogilvy" wrote:

http://www.cpearson.com/excel/codemods.htm

look toward the bottom of the page. The argument to vbcomponents is the
codename.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

Thanks, that works, but I have a need to be able to do this through VB
code.
Do you know how?

"Tom Ogilvy" wrote:

In the project explorer in the VBE, select the entry for the sheet.

make the properties window visible. Change the (name) property.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

How do I renumber (reindex) a sheet using VBA.

Example:
sheet20(name) to sheet1(name)






Tom Ogilvy

How do I renumber a worksheet
 
Mr. May,

I believed I was talking to Gordon about what Gordon did (duplicating
information), not to you at all. (and it was meant to be a humorous chide
to him - the 3 or 4 was meant as a literary exaggeration)

Gordon and I both provided the same correct answer. My earlier response
giving you the source, while Gordon quoted part of it.

Sorry you chose to see my comment to Gordon as offensive to you. I've
read it several times and don't see it myself.

Post a new thread and perhaps you will get an answer that is more satisfying
to you. Use common, easily recognizable and specific terms like codename so
you don't mislead people and waste your time and their's with answers to
question you didn't intend to ask. You might also highlight the Link I gave
you or Gordon's quote from it and state that you don't see that as an
acceptable answer so people don't waste their time and yours in providing
that solution again. Also state that you are looking for a coding solution
so people don't tell you how to do it manually. (obviously tailor to meet
your true concerns - I don't want to put words in your mouth).

Again, sorry that you felt I was in some way being rude as there was never
any intention of that. I believe I made 4 honest attempts at providing you
an answer and in my final post, felt I had provided an answer.

--
Regards,
Tom Ogilvy



"GaryMay" wrote in message
...
Ogilvy,

You haven't told me the same thing 3 or 4 times you rude SOB. By the way,
you still haven't answered the questioned. Have a nice day.

"Tom Ogilvy" wrote:

Figure if you tell him the same thing 3 or 4 times he will pick it up?

--
Regards,
Tom Ogilvy

"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Gary

In VBE you have Sheet1(sheetname) and you want to change the Sheet1
index
name.

Run this macro......code from Chip's site.

Sub change()
ThisWorkbook.VBProject.VBComponents("Sheet1").Name = "NewCodeName"
End Sub

Now you have NewCodeName(sheetname)


Gord Dibben MS Excel MVP

On Thu, 15 Mar 2007 08:24:33 -0700, GaryMay

wrote:

I'm sorry, I still don't get it. I'm just looking for a small piece of
code
that will change a sheet number from say sheet1 to sheet10.

"Tom Ogilvy" wrote:

http://www.cpearson.com/excel/codemods.htm

look toward the bottom of the page. The argument to vbcomponents is
the
codename.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

Thanks, that works, but I have a need to be able to do this through
VB
code.
Do you know how?

"Tom Ogilvy" wrote:

In the project explorer in the VBE, select the entry for the
sheet.

make the properties window visible. Change the (name) property.

--
Regards,
Tom Ogilvy


"GaryMay" wrote:

How do I renumber (reindex) a sheet using VBA.

Example:
sheet20(name) to sheet1(name)








All times are GMT +1. The time now is 05:41 AM.

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