Thread: Can anyone
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
[email protected] fi.or.jp.de@gmail.com is offline
external usenet poster
 
Posts: 51
Default Can anyone

Hi All,

I got one macro, which I pasted in my module but if I want to run that
macro,
the macro name is not visible. Or how do check the result to be
appeared in immediate window ?

Sub LoopThruSheetsBookX(BookX$)
Dim sh As Sheet
For Each sh In Workbooks(BookX$)
Debug.Print sh.Name
Next sh
End Sub