ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Save as file name and specific field (https://www.excelbanter.com/excel-programming/349964-save-file-name-specific-field.html)

annep[_8_]

Save as file name and specific field
 

I have this template where the user runs a macro and at the end it saves
it with the filename "postingSummary.txt" in a Quickbooks import
format.
My file save as PostingSummary.txt is working just fine, but I would
like the add the date of the current week to the file name

I created field in I7 which I maniplutated to hold the wanted file name
of: "F:\_accescc3cData\PostingSum12-18-05.xls", which I could later
convert to a text file.

I am using a posted subroutine:

Sub SaveAsCell()
Dim strName As String

On Error GoTo InvalidName
strName = Sheet1.Range("I7")
ActiveWorkbook.SaveAs strName

but it bombs there.

What is wrong?

It seems to me the the save as cell should do the job, but it bombs
every time.
Any help would be appreciated.
Thanks,

Anne


--
annep
------------------------------------------------------------------------
annep's Profile: http://www.excelforum.com/member.php...o&userid=18851
View this thread: http://www.excelforum.com/showthread...hreadid=499614


JNW

Save as file name and specific field
 
Try substituting
strName = Sheet1.Range("I7")


with
strName = Sheet1.Range("I7").Text

"annep" wrote:


I have this template where the user runs a macro and at the end it saves
it with the filename "postingSummary.txt" in a Quickbooks import
format.
My file save as PostingSummary.txt is working just fine, but I would
like the add the date of the current week to the file name

I created field in I7 which I maniplutated to hold the wanted file name
of: "F:\_accescc3cData\PostingSum12-18-05.xls", which I could later
convert to a text file.

I am using a posted subroutine:

Sub SaveAsCell()
Dim strName As String

On Error GoTo InvalidName
strName = Sheet1.Range("I7")
ActiveWorkbook.SaveAs strName

but it bombs there.

What is wrong?

It seems to me the the save as cell should do the job, but it bombs
every time.
Any help would be appreciated.
Thanks,

Anne


--
annep
------------------------------------------------------------------------
annep's Profile: http://www.excelforum.com/member.php...o&userid=18851
View this thread: http://www.excelforum.com/showthread...hreadid=499614




All times are GMT +1. The time now is 05:40 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com