Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cell Focus

Status
Not open for further replies.

vestax22

Programmer
Jun 18, 2003
139
CA
Hi,

I have an excel 2000 application. At the end of a macro execution I would like to select a cell. I tried this code :

with worksheets("Billing")

.activate
.range("A1").select

end with

the problem is that the screen doesn't seem to update to the new location. Any ideas?

Thx
 
Does it select cell A1 and not adjust the screen scroll or does it do nothing?

Try

Sheets("Billing).Activate
ActiveSheet.Cells(1, 1).Select


Leigh Moore
LJM Analysis Ltd
 
Or try:

with worksheets("Billing")

.Select
.range("A1").select

end with



Peace! [peace]

Mike

Never say Never!!!
Nothing is impossible!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top