+ Reply to Thread
Results 1 to 5 of 5

Run Macro on exit

Hybrid View

Johnmus Run Macro on exit 03-29-2011, 02:47 PM
tigeravatar Re: Run Macro on exit 03-29-2011, 03:36 PM
Johnmus Re: Run Macro on exit 03-29-2011, 04:23 PM
tigeravatar Re: Run Macro on exit 03-29-2011, 05:57 PM
Johnmus Re: Run Macro on exit 03-29-2011, 07:20 PM
  1. #1
    Registered User
    Join Date
    02-10-2011
    Location
    California, USA
    MS-Off Ver
    Excel 2010
    Posts
    92

    Run Macro on exit

    Hi,

    I am using the following Macro to TRIM text in an Information Sheet. The text must be without leading spaces since formulas in other worksheet would not work properly. This is just a safeguard in case entry is sloppy.

    I would like to activate the Macro upon leaving the sheet. I tried "deactivate" but that causes a lengthy calculation. Is there a way to avoid the lengthy calculation? The text that needs to be trimmed is in B6:C22 and B24:G36.

    Private Sub Worksheet_Activate()
    ActiveSheet.Unprotect
    Dim cell As Range
    For Each cell In ActiveSheet.UsedRange.SpecialCells(xlCellTypeConstants)
    cell = WorksheetFunction.TRIM(cell)
    Next cell
    ActiveSheet.Protect
    
    End Sub
    Thanks in advance for any help!

  2. #2
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Thumbs up Re: Run Macro on exit

    Johnmus,

    How about instead of a worksheet deactivate or activate event, you update it as the cell contents change in the desired areas with a worksheet change event, like so:

    Private Sub Worksheet_Change(ByVal Target As Range)
        
        Dim UsedRange1 As Range:    Set UsedRange1 = Range("B6:C22")
        Dim UsedRange2 As Range:    Set UsedRange2 = Range("B24:G36")
        
        If Not Intersect(Target, UsedRange1) Is Nothing Or Not Intersect(Target, UsedRange2) Is Nothing Then
            Target = WorksheetFunction.Trim(Target)
        End If
        
    End Sub


    Hope that helps,
    ~tigeravatar

  3. #3
    Registered User
    Join Date
    02-10-2011
    Location
    California, USA
    MS-Off Ver
    Excel 2010
    Posts
    92

    Re: Run Macro on exit

    Tigeravatar,

    Thanks for your help. This is an excellent idea. However, I can't seem to get it to work except for numbers. The macro trims spaces with numbers but not text. I did format cells to General.

    Johnmus

  4. #4
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Run Macro on exit

    Quote Originally Posted by Johnmus View Post
    Tigeravatar,

    Thanks for your help. This is an excellent idea. However, I can't seem to get it to work except for numbers. The macro trims spaces with numbers but not text. I did format cells to General.

    Johnmus
    Johnmus,

    Do you mean something like
    ' 123 123 ' -> 123 123
    ' abc abc ' -> abc abc

    or
    ' 123 123 ' -> 123123
    ' abc abc ' -> abcabc

    Where it is supposed to preserve (1 space) or eliminate all spaces in the middle? Because it should eliminate spaces at the beginning and leave 1 space between words regardless of whether the cell contains numbers, letters, or any combination of them. Also, you could attach an example so I can get a better idea of what you're looking for.

  5. #5
    Registered User
    Join Date
    02-10-2011
    Location
    California, USA
    MS-Off Ver
    Excel 2010
    Posts
    92

    Re: Run Macro on exit

    tigeravatar,

    After I saved the workbook and opened the sheet it works perfectly! I made some adjustments to the Ranges and tried the adjustments without saving.

    Thanks for your help. This Forum is great! I will mark this SOLVED.

    John

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1