Background: I'm working with a macro that transfers data between different workbooks. One of the workbooks is a conduit for data and doesn't change. The other workbook is a blank form that is populated, saved as a specific name and then reused.
Problem: The workbook being saved needs to use the contents of a cell in the conduit workbook for it's name.
I found a similar post here. The answer gives me a syntax error.
Sub TestTestTestTest()
'
' TestTestTestTest Macro
'
'
Dim name As String
name = Cells("Contents", A1)
ActiveWorkbook.SaveAs() Filename:=name**********
End Sub
The starred line is the source of the syntax error.