Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What's the difference between select and activate ?
Ex. sheets("abc").select and sheets("abc").activate Thanks Steve |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Generally, many folks use them interchangeably. the difference is you can
select several sheets, but only one is the activesheet. same thing for ranges. "SP" wrote: What's the difference between select and activate ? Ex. sheets("abc").select and sheets("abc").activate Thanks Steve |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
try this...
Sub selectem() ThisWorkbook.Sheets(Array(1, 2, 3)).Select End Sub Then try this... Sub selectem() ThisWorkbook.Sheets(Array(1, 2, 3)).Activate End Sub One difference....;o) OJ |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thank you
"JMB" wrote in message ... Generally, many folks use them interchangeably. the difference is you can select several sheets, but only one is the activesheet. same thing for ranges. "SP" wrote: What's the difference between select and activate ? Ex. sheets("abc").select and sheets("abc").activate Thanks Steve |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thank you
"OJ" wrote in message oups.com... try this... Sub selectem() ThisWorkbook.Sheets(Array(1, 2, 3)).Select End Sub Then try this... Sub selectem() ThisWorkbook.Sheets(Array(1, 2, 3)).Activate End Sub One difference....;o) OJ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
.Activate vs. .Select in VBA | Excel Discussion (Misc queries) | |||
Activate/Select Problems | Excel Programming | |||
select vs activate | Excel Programming | |||
select vs activate | Excel Programming | |||
Difference between .Activate and .Select | Excel Programming |