Save as troubles

S

Sandy

Hi

The following fails at the line indicated between asterisks - can anyone
tell me why and offer a solution

Sub New_Name()
Application.EnableEvents = False
Application.Run "Open_All_Sheets"

Dim inputText As String
inputText = Application.InputBox("Enter name here", _
"Persons Name", , , , , 2)

Sheets("Data Input").Range("D1:H1").Value = inputText

Worksheets("Data Input").Buttons("Name_Button").Visible = False
'Worksheets("Data Input").Buttons("Name_Button").Visible = True

Application.Run "Lock_All_Sheets"

**********
ThisWorkbook.SaveCopyAs "Personal Data-" & inputText.xls
**********

ThisWorkbook.Close SaveChanges:=False

Application.EnableEvents = True

End Sub
 
N

Norman Jones

Hi Sandy,

Try:

ThisWorkbook.SaveCopyAs Filename:="Personal Data-" _
& inputText & ".xls"
 
R

RB Smissaert

Shouldn't it be:

ThisWorkbook.SaveCopyAs "Personal Data-" & inputText & ".xls"

RBS
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top