Recently you helped me with a macro which searched all my Excel worksheets for a named range. The result was a text string containing the sheet numbers like "5,6,7,9". Please note the "" around the string and the comma's.

Originally Posted by
Leith Ross
Hello ESF,
This macro will return the worksheet numbers as a comma separated string. Later, you can then use the
Split function to separate the sheet numbers into an array.
Function GetSheetNumbers() As String
Dim Indices As String
Dim N As Integer
Dim vName As Name
For Each vName In ActiveWorkbook.Names
If vName.Name Like "*Obj_Nr" Then
N = vName.RefersToRange.Parent.Index
Indices = IIf(Indices <> "", Indices & "," & N, N)
End If
Next vName
GetSheetNumbers = Indices
End Function
My next step was to run another action on each one of these sheets with the help of the split command. This was achieved by a code (for example) like this:
For Each Sht In Split(GetSheetNumbers, ",")
MsgBox ("The name of the sheet is " & Sheets(Sht + 0).Name)
Next Sht
Here comes my problem: I would like to create a formula summing all the cells of this string. So in this example "='Sheet 5'!H13+'Sheet 6'!H13+'Sheet 7'!H13+'Sheet 9'!H13"
Therefore I tried:
For Row = 1 to 85
Worksheets("Summary").Range("H" & Row).FormulaR1C1 = "='" & Sheets(Sht + 0).Name & "'!RC"
Next Row
How do I use the string with "" and , (comma's) into a formula? On the one hand I need to split them again for creating the cell reference and on the other hand I can use the full string because I need all the sheets anyway.
I hope someone can help me. Thank you in advance.
Erik
Bookmarks