Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi! This is a really easy one, but I can't seem to find
the answer. I was wondering what the code is to generically activate the other open workbook in Excel without naming it proper. Something like this (but not this obviously): Workbooks.Next.Select Thanks! Sincerely, Michael |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Michael,
Here is one way Dim wb For Each wb In Workbooks If wb.Name < ActiveWorkbook.Name Then wb.Activate End If Next wb -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Michael" wrote in message ... Hi! This is a really easy one, but I can't seem to find the answer. I was wondering what the code is to generically activate the other open workbook in Excel without naming it proper. Something like this (but not this obviously): Workbooks.Next.Select Thanks! Sincerely, Michael |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Activewindow.Activatenext
DR. M -----Original Message----- Hi! This is a really easy one, but I can't seem to find the answer. I was wondering what the code is to generically activate the other open workbook in Excel without naming it proper. Something like this (but not this obviously): Workbooks.Next.Select Thanks! Sincerely, Michael . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to select all worksheets in a workbook | Excel Discussion (Misc queries) | |||
Select sheet tabs in workbook & save to separate workbook files | Excel Worksheet Functions | |||
workbook select | Excel Discussion (Misc queries) | |||
select workbook macro | Excel Discussion (Misc queries) | |||
Select other workbook to select data in a macro. | Excel Programming |