Kill Workbook Error

Captain_Conman

Board Regular
Joined
Jun 14, 2018
Messages
54
Hello! I am trying to write a macro that will delete the entire workbook from my desktop if both sheets "100" and "MISC" have no data.

I keep getting a runtime error on the "Kill wb" line. Any thoughts?

Code:
Sub Macro1()
Dim wb As Workbook
Dim Test100 As Object
Dim TestMISC As Object
Set wb = Workbooks.Open("C:\Users\qucso1\Desktop\Test.xlsx")
Set Test100 = Sheets("100").Range("A2")
Set TestMISC = Sheets("MISC").Range("A2")


If IsEmpty(Test100) = True And IsEmpty(TestMISC) = True Then
    wb.Close SaveChanges:=False
    Kill wb
End If
End Sub
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Try;

Code:
[COLOR=#252C2F][FONT=Helvetica]Kill "[/FONT][/COLOR][COLOR=#333333]C:\Users\qucso1\Desktop\Test.xlsx[/COLOR][COLOR=#252C2F][FONT=Helvetica]"[/FONT][/COLOR]
 
Upvote 0

Forum statistics

Threads
1,215,428
Messages
6,124,832
Members
449,190
Latest member
rscraig11

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