Worksheet names to cell Home Board Archive Index Excel VBA Worksheet names to cell Posted by Ian G on August 01, 2001 9:43 PM How do I insert a worksheet name into a cell?Thanks Posted by Alix on August 02, 2001 6:12 AM Hi Ian The code below will insert the workbook name into a cell Sub NameCell()ActiveCell.Value = ActiveWorkbook.NameEnd Sub The following code will enter both the file path and name of the file into the cell Sub FullNameCell()ActiveCell.Value = ActiveWorkbook.FullNameEnd Sub HTH Alix Posted by Ian G on August 02, 2001 4:08 PM