Results 1 to 4 of 4

Compile Error: Expected End Sub

Threaded View

  1. #1
    Registered User
    Join Date
    08-31-2011
    Location
    Indianapolis
    MS-Off Ver
    Excel 2010
    Posts
    2

    Compile Error: Expected End Sub

    Trying to create macro the will search to match data on an entry tab with data on a tab called data. When I find a match, I want the contents of E25 to be posted to column O in the corresponding line on the data tab.

    I keep getting the compile error. I originally called the macro option1. A friend helped with the code and he has it as worksheet_change. Can't seem to get it changed and working.

    Thanks for your help.

    Dcauth
    Sub Option1()
    '
    ' Option1 Macro
    '
    ' Keyboard Shortcut: Ctrl+Shift+A
    '
       Private Sub Worksheet_Change(ByVal Target As Range)
        Dim r As Long
        On Error GoTo ErrHandler
        If Not Intersect(Range("E25"), Target) Is Nothing Then
            If Not Range("A28") = "" Then
                r = Application.Match(Range("A28"), Worksheets("Data").Range("V:V"), 0)
                Worksheets("Data").Range("O" & r) = Range("E25")
            End If
        End If
        Exit Sub
    ErrHandler:
        MsgBox Range("A28") & " not found in Data sheet!", vbExclamation
    End Sub
    Last edited by Dcauth; 08-31-2011 at 02:44 PM.

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