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

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
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,979
Messages
6,122,552
Members
449,088
Latest member
davidcom

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