A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
You can do this only with VBA code. There is no worksheet function to get sheet names.
Sub ListSheetNames()
Dim R As Range
Dim WS As Worksheet
Set R = ActiveCell
For Each WS In ThisWorkbook.Worksheets
R.Value = WS.Name
Set R = R(2, 1)
Next WS
End Sub
Select the cell where the list should start and run the code above.