Good morning,

Here is the code:

Sub SheetNames()
For i = 1 To Sheets.Count
Cells(i, 1) = Sheets(i).Name
Next i
End Sub

It is creating a table of content of sorts; providing a name of every tab in the worksheet. However this starts at cell A1. I want to move it down to cell A9. I thought it would be as simple as changing my cell reference. But when I change to "Cell(9,1) it just puts "Sheet1" in cell A9, not every tab name starting at A9.

Thanks