workbook name (? function to return)

M

mark kubicki

what's the functuion to return the name of a workbook (as a string value)

? ... workbook.name

thanks, mark
 
T

Tom Ogilvy

ActiveWorkbook.Name

ActiveWorkbook.FullName (to have path and name)

also Thisworkbook, Workbooks(1) or anything that returns a reference to a
workbook.
 
Top