+ Reply to Thread
Results 1 to 16 of 16

On error resume next

  1. #1
    Registered User
    Join Date
    05-30-2012
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    26

    On error resume next

    I am trying to split my data in Field 1 by the delimiter ^.

    For most rows in my data, there are three ^ but some rows there is only one. (I found this out by adding the counter variable). When this happens, the code hangs.

    I have put an on error but it still hangs.

    Does anyone have any idea how I can overcome this?

    Thanks



    Please Login or Register  to view this content.

  2. #2
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: On error resume next

    You could either split the F1 content into a temporary variable and then check the UBOUND value before assigning values to F2..F4

    or add extra delimiters to ensure split
    Please Login or Register  to view this content.
    Cheers
    Andy
    www.andypope.info

  3. #3
    Forum Expert mike7952's Avatar
    Join Date
    12-17-2011
    Location
    Florida
    MS-Off Ver
    Excel 2007, Excel 2016
    Posts
    3,551

    Re: On error resume next

    Give this a try on a copy of your db

    Please Login or Register  to view this content.
    Thanks,
    Mike

    If you are satisfied with the solution(s) provided, please mark your thread as Solved.
    Select Thread Tools-> Mark thread as Solved.

  4. #4
    Registered User
    Join Date
    05-30-2012
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    26

    Re: On error resume next

    Quote Originally Posted by mike7952 View Post
    Give this a try on a copy of your db

    Please Login or Register  to view this content.
    Thanks but first problem is that F1 is not defined. Taking off Option Explicit, it said Item not found in this collection on this line:

    Please Login or Register  to view this content.

  5. #5
    Forum Expert mike7952's Avatar
    Join Date
    12-17-2011
    Location
    Florida
    MS-Off Ver
    Excel 2007, Excel 2016
    Posts
    3,551

    Re: On error resume next

    My bad try this I forgot the ""
    .
    x = Split(.Fields("F1").Value, "^")

  6. #6
    Registered User
    Join Date
    05-30-2012
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    26

    Re: On error resume next

    Quote Originally Posted by Andy Pope View Post
    You could either split the F1 content into a temporary variable and then check the UBOUND value before assigning values to F2..F4

    or add extra delimiters to ensure split
    Please Login or Register  to view this content.
    Andy's suggestion (adding more ^) works - thanks.

    However, for some unknown reason, when running my original unaltered code, I get a new message:

    Run-time error '3052':

    File sharing lock count exceeded. Increase MaxLocksPerFile registry entry.

    What does this mean?

    I can step and continue though, so should I just add an Application.DisplayAlerts = False to overcome this message?

  7. #7
    Registered User
    Join Date
    05-30-2012
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    26

    Re: On error resume next

    Quote Originally Posted by mike7952 View Post
    My bad try this I forgot the ""
    .
    x = Split(.Fields("F1").Value, "^")
    Thanks but now I get: "Item not found in this collection."

    Please Login or Register  to view this content.

  8. #8
    Forum Expert mike7952's Avatar
    Join Date
    12-17-2011
    Location
    Florida
    MS-Off Ver
    Excel 2007, Excel 2016
    Posts
    3,551

    Re: On error resume next

    Dim indx as Long

  9. #9
    Registered User
    Join Date
    05-30-2012
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    26

    Re: On error resume next

    Quote Originally Posted by mike7952 View Post
    Dim indx as Long
    SOLVED!

    I had quite a few ^ so needed to alter the Table first (add more fields).

    Thanks for your effort.

    Any ideas about this?

    "Run-time error '3052':

    File sharing lock count exceeded. Increase MaxLocksPerFile registry entry."
    Last edited by dugdugdug; 10-10-2012 at 06:57 AM.

  10. #10
    Forum Expert mike7952's Avatar
    Join Date
    12-17-2011
    Location
    Florida
    MS-Off Ver
    Excel 2007, Excel 2016
    Posts
    3,551

    Re: On error resume next

    Try

    Please Login or Register  to view this content.

  11. #11
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: On error resume next

    isn't the field reference via index zero based?

    If you only have the fields F1..F4 then wouldn't they have the indexes 0..3

  12. #12
    Forum Expert mike7952's Avatar
    Join Date
    12-17-2011
    Location
    Florida
    MS-Off Ver
    Excel 2007, Excel 2016
    Posts
    3,551

    Re: On error resume next

    Your right Andy, Im Just waking up. Should be +1

  13. #13
    Registered User
    Join Date
    05-30-2012
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    26

    Re: On error resume next

    Thanks (that wasn't an issue as I've remarked above).

    I have a lot of data (hence using Access instead of Excel) and running your code was working (hadn't finished) when I appear to have spoken too soon!

    It runs smoothly, then throws up a Run-time error '3001': Invalid argument

    Please Login or Register  to view this content.
    Why would it work for the first 500K rows, then suddenly hang?

    2^7567952LN^-1.5%|Value^EUR^USD^606181.356800^^ ' THIS LINE WORKS
    2^7567952LN^-1.5%|Delta^EUR^USD^-7505900.533108^^ ' HANGS

  14. #14
    Forum Expert mike7952's Avatar
    Join Date
    12-17-2011
    Location
    Florida
    MS-Off Ver
    Excel 2007, Excel 2016
    Posts
    3,551

    Re: On error resume next

    Does all your lines have the ^^ at the end? If so try

    Please Login or Register  to view this content.
    Last edited by mike7952; 10-10-2012 at 07:26 AM.

  15. #15
    Registered User
    Join Date
    05-30-2012
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    26

    Re: On error resume next

    Quote Originally Posted by mike7952 View Post
    Does all your lines have the ^^ at the end? If so try

    Please Login or Register  to view this content.
    Most do but not all.

    My suspicion is that there's something funny with my database.

    I started from scratch and got the same problem as above, ie Invalid argument but on a different line of data.

    Back to my original question, why won't On Error Resume Next skip over the errors?
    Last edited by dugdugdug; 10-10-2012 at 07:45 AM.

  16. #16
    Registered User
    Join Date
    05-30-2012
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    26

    Re: On error resume next

    I suspect my problem lies with the actual database itself, in that when I run the code, it exceeds 2GB, hence throwing up an error.

+ 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