Hi I'm running a workbook with numerous worksheets. The first worksheet is a summary page where I use the following macro to collect certain info from each worksheet:
Sub MakeSummary()
'
' MakeSummary Macro
'
Sheets("SUMMARY").Select
' Clear the existing values (if any)
Range("$bb$2:$be$60").Value = ""
' J tracks the row number on the summary page
' I tracks the sheet number being processed
J = 2
For I = 3 To Sheets.Count
A$ = Sheets(I).Name
' Don't process a sheet if its name is "Conversion Table"
' or if the name is blank.
If (A$ = "Conversion Table") Then GoTo 10
If (Sheets(A$).Range("$C$1").Value = "") Then GoTo 10
' Process the current sheet
Range("bB" + Format(J)).FormulaR1C1 = "='" + A$ + "'!R6c3"
Range("bC" + Format(J)).FormulaR1C1 = "='" + A$ + "'!R71c1"
Range("bD" + Format(J)).FormulaR1C1 = "='" + A$ + "'!R71C2"
Range("bE" + Format(J)).FormulaR1C1 = "='" + A$ + "'!R71C3"
J = J + 1
10 Next I
End Sub
Is there a code that can be added to this macro that would give me a hyperlinked list of worksheet tabs in column BA
Sub MakeSummary()
'
' MakeSummary Macro
'
Sheets("SUMMARY").Select
' Clear the existing values (if any)
Range("$bb$2:$be$60").Value = ""
' J tracks the row number on the summary page
' I tracks the sheet number being processed
J = 2
For I = 3 To Sheets.Count
A$ = Sheets(I).Name
' Don't process a sheet if its name is "Conversion Table"
' or if the name is blank.
If (A$ = "Conversion Table") Then GoTo 10
If (Sheets(A$).Range("$C$1").Value = "") Then GoTo 10
' Process the current sheet
Range("bB" + Format(J)).FormulaR1C1 = "='" + A$ + "'!R6c3"
Range("bC" + Format(J)).FormulaR1C1 = "='" + A$ + "'!R71c1"
Range("bD" + Format(J)).FormulaR1C1 = "='" + A$ + "'!R71C2"
Range("bE" + Format(J)).FormulaR1C1 = "='" + A$ + "'!R71C3"
J = J + 1
10 Next I
End Sub
Is there a code that can be added to this macro that would give me a hyperlinked list of worksheet tabs in column BA