Thread
:
identify selected worksheets
View Single Post
#
5
Posted to microsoft.public.excel.programming
Gary''s Student
external usenet poster
Posts: 11,058
identify selected worksheets
Sub which_ones()
For i = 1 To ActiveWindow.SelectedSheets.Count
MsgBox (ActiveWindow.SelectedSheets(i).Name)
Next
End Sub
--
Gary''s Student - gsnu200793
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student