Home |
Search |
Today's Posts |
#3
![]() |
|||
|
|||
![]()
To rename a text box manually:
Select the text box Click in the Name Box, to the left of the Formula Bar Type a name Press the Enter key To rename all the text boxes programmatically, you can use code similar to the following: Sub NumberTextBoxes() Dim objTB As TextBox Dim i As Integer i = 1 For Each objTB In ActiveSheet.TextBoxes objTB.Name = "Textbox " & i i = i + 1 Next objTB End Sub Jerry Dyben wrote: Need to change the number in Text Box in Excel. For example; (Text Box 209). I want to change that number to (Text Box 1). In fact I would like to sequence the Text Box numbers form 1 to 160. Can you help? -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel, how do I change the column headings from letters to number | Excel Discussion (Misc queries) | |||
Formulas dealing with text data | Excel Worksheet Functions | |||
Change column Number vrs Text | Excel Worksheet Functions | |||
convert a number in Excel from numeric to text, i.e. "1" to "one" | Excel Worksheet Functions | |||
how do I change the text case of imported data in excel? | Excel Discussion (Misc queries) |