Coding to check for a sheet name and add it if it's not there

A

AlanN

Can someone provide me some code that would check to see if the sheet name "Report" is in the active workbook and if not add it to the end of the sheets, please?

TIA, AlanN
 
C

Chip Pearson

Alan,

Try something like

Dim N As Long
On Error Resume Next
With ThisWorkbook.Worksheets
N = Len(.Item("Report").Name)
If N = 0 Then
.Add(after:=.Item(.Count)).Name = "Report"
End If
End With


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com (e-mail address removed)



Can someone provide me some code that would check to see if the
sheet name "Report" is in the active workbook and if not add it to
the end of the sheets, please?

TIA, AlanN
 
A

AlanN

I tried putting that


Thanks for the macro, Chip. I changed ThisWorkbook to ActiveWorkbook as it
is run from my personal.xls file. It works like a charm.

AlanN
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top