+ Reply to Thread
Results 1 to 4 of 4

match function, iserror

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    11-05-2013
    Location
    Germany
    MS-Off Ver
    Excel 2013
    Posts
    120

    match function, iserror

    Hi,

    I'm trying to "match" values from one table in another and if there is a value not in the table it should do something. The loop works but the match function does not work properly.

    I can not set Search1 equal to the match function which I would like to do as it makes the code so much easier to read/adjust

    and
    Dim Search1 as long

    with sheet9
    If IsError(Application.Match(.Cells(n, 3), sheet1.Range("B:B"), 0)) = True Then
                        Search1 = Application.Match(.Cells(n, 3), sheet1.Range("B:B"), 0)
                        
                            sheet1.Cells(Search1, 2) = sheet9.Cells(n, 3)
                            sheet1.Cells(Search1, 3) = sheet9.Cells(n, 5) 
                            sheet1.Cells(Search1, 4) = sheet9.Cells(n, 9) 
                            sheet1.Cells(Search1, 5) = sheet9.Cells(n, 10) 
                            sheet1.Cells(Search1, 6) = sheet9.Cells(n, 13) 
                        Else
                            lr2 = sheet1.Cells(Rows.Count, 2).End(xlUp).Row + 2
    
                            sheet1.Cells(lr2, 2) = sheet9.Cells(n, 3) 
                            sheet1.Cells(lr2, 3) = sheet9.Cells(n, 5) 
                            sheet1.Cells(lr2, 4) = sheet9.Cells(n, 9)
                            sheet1.Cells(lr2, 5) = sheet9.Cells(n, 10) 
                            sheet1.Cells(lr2, 6) = sheet9.Cells(n, 13)                           
                        
    End If
    end with

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: match function, iserror

    Hello Decar,

    Please post a copy of your workbook. It will be easier to isolate the problem that way.
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Forum Contributor
    Join Date
    11-05-2013
    Location
    Germany
    MS-Off Ver
    Excel 2013
    Posts
    120

    Re: match function, iserror

    Thank you Leith,

    after catching a break and looking at it again I found my mistake. The ISerror method was new for me and I did not think enough about how the output is "true/False" so it basically told the range to be in row "true" which makes not much sense for VBA...

    Next time I'm going to add a workbook.


    regards

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: match function, iserror

    Hello Decar,

    You're welcome, although I didn't do anything.

    Thanks for posting back with the solution. Glad to know that you have the macro working now.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Need help using ISERROR with Index/Match function
    By 04twinmom in forum Excel General
    Replies: 2
    Last Post: 10-18-2011, 12:00 PM
  2. convert iserror match function to macro
    By rooky in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 09-14-2010, 01:26 PM
  3. [SOLVED] IsError and Match function
    By Tom Ogilvy in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 05-26-2006, 02:55 PM
  4. IsError and Match function
    By GDCross in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-26-2006, 12:30 PM
  5. [SOLVED] IsError and Match function
    By GDCross in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-26-2006, 12:25 PM

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