View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Corey Corey is offline
external usenet poster
 
Posts: 172
Default Navigate between open workbooks

Simple but SO effective.

Thanks


CTM
"FM" wrote in message
...
I have tried:
with workbook("Name").select

and simply

workbook("Name").Select

but i get errors


You just miss the "s", the right instruction a

With Workbooks("Name").Select
Workbooks("Name").Select


FM