+ Reply to Thread
Results 1 to 13 of 13

help with on error resume next

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-06-2011
    Location
    northern ireland
    MS-Off Ver
    Excel 365
    Posts
    180

    help with on error resume next

    Hi - can someone help me please. I have a number of columns that I wish to find in a spreadsheet so I repear the following on error resume next. But after it test's the cells.find it still copies the info and pastes it when I want it to ignore and to go to next test. Is there an easy way of doing this?

    Many thanks


     On Error Resume Next
       
        test = Cells.Find(What:="RunID", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
            :=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
            True, SearchFormat:=False).Activate
            If Not test = "" Then
            End If
           
        ActiveCell.Offset(1, 0).Select
        
        Range(Selection, Selection.End(xlDown).Offset(-1, 0)).Select
        Selection.Copy
        Windows("Excel Spreadsheet Header Row.xlsx").Activate
        Cells.Find(What:="RunID", After:=ActiveCell, LookIn:=xlFormulas, _
            LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
            MatchCase:=True, SearchFormat:=False).Activate
        ActiveCell.Offset(1, 0).Select
        Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:=xlNone, _
            SkipBlanks:=False, Transpose:=False
         Application.CutCopyMode = False
    
         
       ' next column and same run through as above
           
        Windows("PRE_amended.xlsx").Activate
        
         On Error Resume Next
        
        test = Cells.Find(What:="RunDate", After:=ActiveCell, LookIn:=xlFormulas, _
            LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
            MatchCase:=True, SearchFormat:=False).Activate
        ActiveCell.Offset(1, 0).Select
        Range(Selection, Selection.End(xlDown)).Select
        Selection.Copy
        Windows("Excel Spreadsheet Header Row.xlsx").Activate
        Cells.Find(What:="RunDate", After:=ActiveCell, LookIn:=xlFormulas, _
            LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
            MatchCase:=True, SearchFormat:=False).Activate
        If Not test = "" Then
        End If
        ActiveCell.Offset(1, 0).Select
        Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:=xlNone, _
            SkipBlanks:=False, Transpose:=False
        Application.CutCopyMode = False
        
        'Ee ref next column
        
        Windows("Pre_amended.xlsx").Activate
        
         On Error Resume Next

  2. #2
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: help with on error resume next

    You don't really need an error handler with find if you assign it to a range variable.
       Dim rCopy             As Range
       Dim rPaste            As Range
       Dim varFindItems
       Dim varItem
    
       ' array of items to find
       varFindItems = Array("RunID", "RunDate")
    
       ' now process each item in the array
       For Each varItem In varitems
          Set rCopy = Cells.Find(What:=varItem, After:=ActiveCell, LookIn:=xlFormulas, _
                                  LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                                  MatchCase:=True, SearchFormat:=False)
          ' only continue if it was found
          If Not test Is Nothing Then
    
             Set rCopy = rCopy.Offset(1, 0)
    
             Range(rCopy, rCopy.End(xlDown).Offset(-1, 0)).Copy
    
             Windows("Excel Spreadsheet Header Row.xlsx").Activate
             
             ' find cell to paste to
             Set rPaste = Cells.Find(What:=varItem, After:=ActiveCell, LookIn:=xlFormulas, _
                                     LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                                     MatchCase:=True, SearchFormat:=False)
             ' check we found it
             If Not rPaste Is Nothing Then
                rPaste.Offset(1, 0).PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:=xlNone, _
                                                 SkipBlanks:=False, Transpose:=False
                Application.CutCopyMode = False
    
             End If
          End If
       ' now move to next item
       Next varItem
    Everyone who confuses correlation and causation ends up dead.

  3. #3
    Forum Contributor
    Join Date
    09-06-2011
    Location
    northern ireland
    MS-Off Ver
    Excel 365
    Posts
    180

    Re: help with on error resume next

    It displays an error at this point - (run time error - 13, type mismatch)

    
     ' now process each item in the array
       For Each varItem In varitems
    So I have changed to
    For Each varItem In varFindItems
    but still another error

    run time error 424

    at the point of
    
     If Not test Is Nothing Then
    Last edited by romperstomper; 11-29-2011 at 05:02 AM. Reason: remove unnecessary quote

  4. #4
    Forum Expert
    Join Date
    11-29-2010
    Location
    Ukraine
    MS-Off Ver
    Excel 2019
    Posts
    4,168

    Re: help with on error resume next

    hi romperstomper, is it a typo or sort of educational trick?

    If Not test Is Nothing Then
    instead of

    If Not rcopy Is Nothing Then

  5. #5
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: help with on error resume next

    Both were typos (the dangers of untested code):
       Dim rCopy             As Range
       Dim rPaste            As Range
       Dim varFindItems
       Dim varItem
    
       ' array of items to find
       varFindItems = Array("RunID", "RunDate")
    
       ' now process each item in the array
       For Each varItem In varFindItems
          Set rCopy = Cells.Find(What:=varItem, After:=ActiveCell, LookIn:=xlFormulas, _
                                  LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                                  MatchCase:=True, SearchFormat:=False)
          ' only continue if it was found
          If Not rCopy Is Nothing Then
    
             Set rCopy = rCopy.Offset(1, 0)
    
             Range(rCopy, rCopy.End(xlDown).Offset(-1, 0)).Copy
    
             Windows("Excel Spreadsheet Header Row.xlsx").Activate
             
             ' find cell to paste to
             Set rPaste = Cells.Find(What:=varItem, After:=ActiveCell, LookIn:=xlFormulas, _
                                     LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                                     MatchCase:=True, SearchFormat:=False)
             ' check we found it
             If Not rPaste Is Nothing Then
                rPaste.Offset(1, 0).PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:=xlNone, _
                                                 SkipBlanks:=False, Transpose:=False
                Application.CutCopyMode = False
    
             End If
          End If
       ' now move to next item
       Next varItem

  6. #6
    Forum Expert
    Join Date
    11-29-2010
    Location
    Ukraine
    MS-Off Ver
    Excel 2019
    Posts
    4,168

    Re: help with on error resume next

    hi leanne2011,

    it should be:

    For Each varItem In varFindItems
    plus see post #4

  7. #7
    Forum Contributor
    Join Date
    09-06-2011
    Location
    northern ireland
    MS-Off Ver
    Excel 365
    Posts
    180

    Re: help with on error resume next

    Ok this is perfect - thank you. Just one problem though, in the first column it is going to the last row of data and copying and pasting but when it goes to the varFindItems its one row sort in the copy and paste function ?

  8. #8
    Forum Contributor
    Join Date
    09-06-2011
    Location
    northern ireland
    MS-Off Ver
    Excel 365
    Posts
    180

    Re: help with on error resume next

    not sure if i was clear - the first time the procedure is run and in the 1st varfinditem, the copy and paste is the exact rows ie activerows but when it reruns the procedure 2nd time and onwards its 1 row short in copying the data across.

  9. #9
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: help with on error resume next

    Be easier to say why with a sample workbook and all of your code.

  10. #10
    Forum Contributor
    Join Date
    09-06-2011
    Location
    northern ireland
    MS-Off Ver
    Excel 365
    Posts
    180

    Re: help with on error resume next

    Quote Originally Posted by romperstomper View Post
    Be easier to say why with a sample workbook and all of your code.

    Thanks for your help on this

    Sub moduletwo()
         
    
         
         
            Workbooks.Open Filename:= _
            "N:\PAYROLL\Leanne\Example - Macro Work LB only\Excel Spreadsheet Header Row1.xlsx"
        Range("A2").Select
        
        Workbooks.Open Filename:= _
            "N:\PAYROLL\Leanne\Example - Macro Work LB only\PRE_amended.xlsx"
        
        
        Dim rCopy             As Range
       Dim rPaste            As Range
       Dim varFindItems
       Dim varItem
    
       ' array of items to find
       varFindItems = Array("RunID", "RunDate", "EeRef", "Name", "Dept", "CostCentre", "Branch", "StartDate", "LeaveDate", "TaxCode", "NINumber", "NILetter", _
       "TaxablePay", "NIableTP", "TotalNICs", "PreTaxAddDed", "PostTaxAddDed", "Basic Pay", "Back Pay", "Salary Adj", "Pension Uplift", "Car Allowance", "Holiday Pay", _
       "ESPP Benefit", "ESPP Refund", "Rsu Gain", "Option Gain", "Bonus", "High Perf Bonus", "MBO Bonus", "Net Bonus", "Referral Bonus", "Relocation Allowance", "PILON", _
       "Redundancy Gross", "Redundancy Nett", "Severance Gross", "Severance Nett", "Cycle Scheme", "Sal.Exchange", "Childcare", "Educ.Sacrifice", "Unpaid Leave", _
       "Maternity Pay", "TotalAbsencePay", "Nu.Per.Pension", "Healthcare", "ESPP", "ESPP Already Received", "RSU Gain Less Tax Witheld", "Rsu Ers Nic Adj", "Co Loan" _
       , "Option Gain Less Tax", "Option Gain Already Received", "Option Ers Nic Adj", "Advance Pay", "NegNetBf", "NegNetCf", "StudentLoan", "Tax", "NI", "AEO", _
       "NetPay", "ErNI", "PenEr")
    
       ' now process each item in the array
       For Each varItem In varFindItems
          Set rCopy = Cells.Find(What:=varItem, After:=ActiveCell, LookIn:=xlFormulas, _
                                  LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                                  MatchCase:=True, SearchFormat:=False)
          ' only continue if it was found
          If Not rCopy Is Nothing Then
    
             Set rCopy = rCopy.Offset(1, 0)
    
             Range(rCopy, rCopy.End(xlDown).Offset(-1, 0)).Copy
    
             Windows("Excel Spreadsheet Header Row.xlsx").Activate
             
             ' find cell to paste to
             Set rPaste = Cells.Find(What:=varItem, After:=ActiveCell, LookIn:=xlFormulas, _
                                     LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                                     MatchCase:=True, SearchFormat:=False)
             ' check we found it
             If Not rPaste Is Nothing Then
                rPaste.Offset(1, 0).PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:=xlNone, _
                                                 SkipBlanks:=False, Transpose:=False
                Application.CutCopyMode = False
    
             End If
          End If
       ' now move to next item
       Windows("PRE_amended1.xlsx").Activate
       
       Next varItem
    
        
        End Sub
    Attached Files Attached Files

  11. #11
    Forum Contributor
    Join Date
    09-06-2011
    Location
    northern ireland
    MS-Off Ver
    Excel 365
    Posts
    180

    Re: help with on error resume next

    can anyone please help me with this

  12. #12
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: help with on error resume next

    I'm afraid I am quite busy at the moment, but I will try and take a look at lunchtime if no-one steps in before then.

  13. #13
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: help with on error resume next

    Can you give me a specific example as to what is missing on subsequent runs?

+ 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