Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Automatically Run a macro when a worksheet is selected


"Stephen Hartman" wrote in message ...
Is there a bit of code that will automatically run a macro when I select the worksheet that contains the macro?

That work's great thanks! One other question....

If I have 2 sheets, I need code in sheet 2 that will check the last row used in sheet 1 and then return that value as a variable so it can be used throughout the code in sheet 2. Any help would be greatly appreciated!



  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 811
Default Automatically Run a macro when a worksheet is selected

"Stephen Hartman" wrote in message
...
If I have 2 sheets, I need code in sheet 2 that will check the last row
used in sheet 1 and then return that value as a variable so it can be used
throughout the code in sheet 2. Any help would be greatly appreciated!

Hi Stephen,

If you mean you want the last row number, here's one way to do it. Note
that in some cases the UsedRange method will return an area greater than the
actual area in use, in which case a more complex method of determining the
last row is required.

-------------------------
In Sheet2 Code Module
-------------------------
Private mlLastRow As Long

Private Sub Worksheet_Activate()
mlLastRow = Sheet1.UsedRange.Rows.Count
End Sub

--
Rob Bovey, MCSE, MCSD, Excel MVP
Application Professionals
http://www.appspro.com/

* Please post all replies to this newsgroup *
* I delete all unsolicited e-mail responses *


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to run specific macro on selected worksheet? Harshad[_2_] Excel Discussion (Misc queries) 2 October 31st 08 06:56 AM
Automatically copy selected information from one worksheet to anot SM1 Excel Discussion (Misc queries) 1 December 21st 06 01:02 AM
Macro to Sort automatically when file/save is selected KDG Excel Discussion (Misc queries) 3 December 20th 05 08:28 PM
How to run a macro when a worksheet is selected cpmittal Excel Worksheet Functions 2 July 27th 05 11:57 AM
Automatically Run a macro when a worksheet is selected Rob Bovey Excel Programming 2 October 19th 03 10:00 PM


All times are GMT +1. The time now is 01:19 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"