![]() |
Delete sheets with "@"
I have a VBA to "show pages" by email address at a pivot table. Then the
program calls a Sub to email the sheets with sheet name "@". But how to delete those sheets with "@" after sending the emails? Sub PagebyUser() Sheets("PivotData").Select ActiveSheet.PivotTables("PivotTable1").ShowPages PageField:="Email" Call SendbyUser End Sub |
Delete sheets with "@"
Sub DeleteSheets() Application.DisplayAlerts = False For Each sht In Worksheets If InStr(sht.Name, "@") 0 Then sht.Delete End If Next Application.DisplayAlerts = True End Sub call the above in your sub. Manges -- mangesh_yada ----------------------------------------------------------------------- mangesh_yadav's Profile: http://www.excelforum.com/member.php...fo&userid=1047 View this thread: http://www.excelforum.com/showthread.php?threadid=37998 |
Delete sheets with "@"
Thanks.
"mangesh_yadav" wrote: Sub DeleteSheets() Application.DisplayAlerts = False For Each sht In Worksheets If InStr(sht.Name, "@") 0 Then sht.Delete End If Next Application.DisplayAlerts = True End Sub call the above in your sub. Mangesh -- mangesh_yadav ------------------------------------------------------------------------ mangesh_yadav's Profile: http://www.excelforum.com/member.php...o&userid=10470 View this thread: http://www.excelforum.com/showthread...hreadid=379980 |
All times are GMT +1. The time now is 05:44 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com