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

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
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,214,823
Messages
6,121,780
Members
449,049
Latest member
greyangel23

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