ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Delete sheet on a condition: debug error (https://www.excelbanter.com/excel-programming/401054-delete-sheet-condition-debug-error.html)

[email protected]

Delete sheet on a condition: debug error
 
I have the following code.

The following sub is written for deleting a worksheet that has its
name as 0. Code works but I dont get the desired result.

Sub test1()

Dim ws as worksheet

For each ws InThisWorkbook.Worksheets

If ws.name = 0 then
Application.DisplayAlerts = False
ws.delete
End If

Next

End Sub

The following sub is written for deleting worksheets if its index
number is greater than 3. Again, Code works but dont get the desired
result.

Sub test2()
Dim ws as worksheet

For each ws InThisWorkbook.Worksheets
Application.DisplayAlerts = False
If ws.index 3 then
ws.delete
End If

Next

End Sub

Any idea why this happens? Thanks


Colby Africa

Delete sheet on a condition: debug error
 
Hey there.

What is the desired result?

C


[email protected]

Delete sheet on a condition: debug error
 
On Nov 13, 12:54 pm, Colby Africa wrote:
Hey there.

What is the desired result?

C


For test1, the desired result would be to delete the sheet that has
the name as 0
For test2, the desired result would be to delete the sheets that has
the index greater thanm 3.

test2 runs quite okay but test1 does not do what I intend to do


Colby Africa

Delete sheet on a condition: debug error
 
I get it now. Okay, the worksheet Name property is a string, so try
something like this:



Dim ws As Worksheet


For Each ws In ActiveWorkbook.Worksheets


If ws.Name = "0" Then
Application.DisplayAlerts = False
ws.Delete
End If


Next


End Sub



All times are GMT +1. The time now is 12:42 PM.

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