Kill line not working

Billy C

Board Regular
Joined
Aug 26, 2005
Messages
52
Hi,
Can anyone tell me why the kill line is not working in this code?
the error is runtime error 53
file not found

MyPath = ActiveWorkbook.Path
ActiveWorkbook.SaveAs Filename:=MyPath & MyName
ActiveWorkbook.SendMail Recipients:="billy.cameron@networkrail.co.uk", Subject:="TS Submittal " & trimName
ActiveWorkbook.Close
Kill "MyName.xls"
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Is the file actually called "MyName.xls" or is MyName simply the variable that holds the name of the file?

If it isn't called "MyName.xls" it won't work.

Regards

Richard
 
Upvote 0
If MyPath = c:\temp, you are saving your file as c:\tempMyName.xls

First, you need to add a backslash between the path and the name.

Second, you need to kill the file with a full path:
Code:
MyPath = ActiveWorkbook.Path 
ActiveWorkbook.SaveAs Filename:=MyPath & "\" & MyName 
ActiveWorkbook.SendMail Recipients:="billy.cameron@networkrail.co.uk", Subject:="TS Submittal " & trimName 
ActiveWorkbook.Close 
Kill MyPath & "\" & MyName
 
Upvote 0

Forum statistics

Threads
1,214,426
Messages
6,119,414
Members
448,895
Latest member
omarahmed1

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top