Rows and Columns RC[7]
Solved/Closed
E-coli
Posts
1
Registration date
Wednesday 27 August 2008
Status
Member
Last seen
28 August 2008
-
28 Aug 2008 à 15:02
Ivan-hoe Posts 433 Registration date Saturday 16 February 2008 Status Member Last seen 17 October 2008 - 3 Sep 2008 à 04:11
Ivan-hoe Posts 433 Registration date Saturday 16 February 2008 Status Member Last seen 17 October 2008 - 3 Sep 2008 à 04:11
Related:
- Rows and Columns RC[7]
- How to delete rows and columns in word - Guide
- Microsoft store download windows 7 - Download - App downloads
- Vistalizator windows 7 - Download - Customization
- Wordpad download for windows 7 - Download - Word processors
- Store installer has stopped working windows 7 - Guide
3 responses
Ivan-hoe
Posts
433
Registration date
Saturday 16 February 2008
Status
Member
Last seen
17 October 2008
110
2 Sep 2008 à 08:39
2 Sep 2008 à 08:39
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 16 February 2008
Status
Member
Last seen
17 October 2008
110
3 Sep 2008 à 04:11
3 Sep 2008 à 04:11
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