Rows and Columns RC[7]
Solved/Closed
E-coli
Posts
1
Registration date
Wednesday August 27, 2008
Status
Member
Last seen
August 28, 2008
-
Aug 28, 2008 at 03:02 PM
Ivan-hoe Posts 433 Registration date Saturday February 16, 2008 Status Member Last seen October 17, 2008 - Sep 3, 2008 at 04:11 AM
Ivan-hoe Posts 433 Registration date Saturday February 16, 2008 Status Member Last seen October 17, 2008 - Sep 3, 2008 at 04:11 AM
Related:
- Rows and Columns RC[7]
- Kmspico windows 7 - Download - Other
- Minecraft java edition free download for pc windows 7 - Download - Sandbox
- Bandlab download for pc windows 7 - Download - Musical production
- Download webcam for windows 7 - Download - Other
- Scratch 3 download for windows 7 - Download - Programming languages
3 responses
Ivan-hoe
Posts
433
Registration date
Saturday February 16, 2008
Status
Member
Last seen
October 17, 2008
110
Sep 2, 2008 at 08:39 AM
Sep 2, 2008 at 08:39 AM
Hello E-Coli !
the square brackets are used for relative adressing :
if the active cell is C3 (third row / third column), R[-2]C[7] corresponds to J1 (2 rows backwards and 7 columns forward)
For absolute adressing, do not use the square brackets :
R2C7 corresponds to $G$2 (second row / seventh column)
Ivan
the square brackets are used for relative adressing :
if the active cell is C3 (third row / third column), R[-2]C[7] corresponds to J1 (2 rows backwards and 7 columns forward)
For absolute adressing, do not use the square brackets :
R2C7 corresponds to $G$2 (second row / seventh column)
Ivan
Ivan-hoe
Posts
433
Registration date
Saturday February 16, 2008
Status
Member
Last seen
October 17, 2008
110
Sep 3, 2008 at 04:11 AM
Sep 3, 2008 at 04:11 AM
I do not have any code already compiled for what you want, but let me give you some tips
to repeat this as many times as you have names in your list, use a loop (e.g. For Each ... Next)
Ivan
Sheets.Add After:=Sheets(Sheets.Count) 'creates a new worksheet Sheets(Sheets.Count).Name = "MyName" ' rename the new worksheet
to repeat this as many times as you have names in your list, use a loop (e.g. For Each ... Next)
For Each MyCell In MyRange 'MyRange is the range containing your list ' instructions Next MyCell
Ivan
Ivan-Hoe,
Thank you very much. I can't believe something so simple was causing me such problems.
I have another one for you:
How can I automatically create and name worksheets in a workbook based on a list that exists in another sheet "Summary" in the workbook? The list begins at cell A10. Mind you, this list will vary from workbook to workbook. Do you have some code already compiled to perform this?
E-Coli
Thank you very much. I can't believe something so simple was causing me such problems.
I have another one for you:
How can I automatically create and name worksheets in a workbook based on a list that exists in another sheet "Summary" in the workbook? The list begins at cell A10. Mind you, this list will vary from workbook to workbook. Do you have some code already compiled to perform this?
E-Coli