View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
DaveO[_2_] DaveO[_2_] is offline
external usenet poster
 
Posts: 46
Default Code to list concurrently open workbooks

From the Excel menu you can click Windows and see a list of
concurrently open files. Is there VBA code to capture that list
programmatically?

For instance: to touch all the cells in a selection, the code is
For Each rCell in Selection.Cells
...snip
next rCell

Is there similar For Each code that will scroll through a list of open
workbooks?

Thanks,
Dave O