Process Worksheets

D

dfrancefort

I need to process worksheets in a workbook. Is there a
way to loop through all of the worksheet names in an open
workbook?
 
P

pfsardella

Dim wSht as Worksheet

For Each wSht in ActiveWorkbook.Worksheets
' Your processing code here.
Next wSht

HTH
Paul
 
Top