J
Johnnyboy5
Hi
how can I view (to check) which sheets have been included in a group ?
J
how can I view (to check) which sheets have been included in a group ?
J
Hi
how can I view (to check) which sheets have been included in a group ?
J
Johnnyboy5 formulated on Saturday :
Loop through ActiveWindow.SelectedSheets for a list of sheetnames.
--
Garry
Free usenet access athttp://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc
Hello !
You could use "ActiveWindow.SelectedSheets" in a macro to display the name
of the selected sheets.
In a VBA module paste the following code:
Public Sub Show_Selected_Sheets()
Dim Sh As Object, ShList As String
For Each Sh In ActiveWindow.SelectedSheets
ShList = ShList & Sh.Name & vbCrLf
Next Sh
MsgBox ShList
End Sub
_________________________