+ Reply to Thread
Results 1 to 15 of 15

Code breaking at one line

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-29-2011
    Location
    Cape Town
    MS-Off Ver
    Excel 2010
    Posts
    107

    Code breaking at one line

    Hi,

    I know this is a long shot and I'm hoping that someone will be able to fix this without having to go through 100's of lines of script. I have a page of VBA code and basically the code runs fine until there are more than 5 instances of what I'm actually doing. If you see the excel spreadsheet attached I'm basically building up a decision tree. I select the number of branches and nodes based on a user form. Once there are more than 5 branches the code breaks. Here is the section of code that gets highlighted in the debug mode 'ActiveSheet.Cells(m1(i).point, colc).Formula = "=" & ActiveSheet.Cells(m1(i).point, colc - 1).Address & "*" & ActiveSheet.Cells(m2(tempflag).point, colc - 4).Address' but this is only highlighted in the second instance.

    HTML Code: 
    HTML Code: 
    Is there anyway to rewrite this statement or can you suggest reasons as to why it breaks? Attached is an excel sheet with the outcome of the vba:
    Attached Files Attached Files

  2. #2
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Code breaking at one line

    it would help if you could give us more information than "it breaks". if there's an error, what is it? does the formula string look correct if you print it to the immediate window? does the formula result in an error?
    Josie

    if at first you don't succeed try doing it the way your wife told you to

  3. #3
    Forum Contributor
    Join Date
    09-29-2011
    Location
    Cape Town
    MS-Off Ver
    Excel 2010
    Posts
    107

    Re: Code breaking at one line

    The message i get is ' Run-time-error '1004'

    Application-defined or object-defined error

    I've inherited this script and be honest I'm no VBA expert. How do I see if the formula results in an error.

  4. #4
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Code breaking at one line

    try changing this:
    Else
     ActiveSheet.Cells(m1(i).point, colc).Formula = "=" & ActiveSheet.Cells(m1(i).point, colc - 1).Address & "*" & ActiveSheet.Cells(m2(tempflag).point, colc - 4).Address
    End If
    to
    Else
       debug.print ActiveSheet.Cells(m1(i).point, colc).address
       debug.print "=" & ActiveSheet.Cells(m1(i).point, colc - 1).Address & "*" & ActiveSheet.Cells(m2(tempflag).point, colc - 4).Address
     ActiveSheet.Cells(m1(i).point, colc).Formula = "=" & ActiveSheet.Cells(m1(i).point, colc - 1).Address & "*" & ActiveSheet.Cells(m2(tempflag).point, colc - 4).Address
    End If
    so that the cell address and formula are printed in the immediate window in the vbe and then tell us what the results are when the error occurs

  5. #5
    Forum Contributor
    Join Date
    09-29-2011
    Location
    Cape Town
    MS-Off Ver
    Excel 2010
    Posts
    107

    Re: Code breaking at one line

    The line that is now highlighted in yellow is 'Debug.Print "=" & ActiveSheet.Cells(m1(i).point, colc - 1).Address & "*" & ActiveSheet.Cells(m2(tempflag).point, colc - 4).Address'

    Where in the VBE do I actually see the results are when the error occurs

  6. #6
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Code breaking at one line

    that helps. change that line to
    debug.print m2(tempflag).point
    debug.print  colc - 4
    the output is in the Immediate Window (click 'View' - 'immediate window' in the vbe)

  7. #7
    Forum Contributor
    Join Date
    09-29-2011
    Location
    Cape Town
    MS-Off Ver
    Excel 2010
    Posts
    107

    Re: Code breaking at one line

    The output from your first suggestion is:
    $P$4
    =$O$4*$L$31
    $P$10
    =$O$10*$L$31
    $P$16
    =$O$16*$L$31
    $P$22
    =$O$22*$L$31
    $P$28
    =$O$28*$L$31
    $P$34
    =$O$34*$L$31
    $P$40
    =$O$40*$L$31
    $P$46
    =$O$46*$L$31
    $P$52
    =$O$52*$L$31
    $P$64
    =$O$64*$L$91
    $P$70
    =$O$70*$L$91
    $P$76
    =$O$76*$L$91
    $P$82
    =$O$82*$L$91
    $P$88
    =$O$88*$L$91
    $P$94
    =$O$94*$L$91
    $P$100
    =$O$100*$L$91
    $P$106
    =$O$106*$L$91
    $P$112
    =$O$112*$L$91
    $L$31
    =$K$31*$H$61
    $H$61
    $P$4
    =$O$4*$L$31
    $P$10
    =$O$10*$L$31
    $P$16
    =$O$16*$L$31
    $P$22
    =$O$22*$L$31
    $P$28
    =$O$28*$L$31
    $P$34
    =$O$34*$L$31
    $P$40
    =$O$40*$L$31
    $P$46
    =$O$46*$L$31
    $P$52
    =$O$52*$L$31
    $P$64
    =$O$64*$L$91
    $P$70
    =$O$70*$L$91
    $P$76
    =$O$76*$L$91
    $P$82
    =$O$82*$L$91
    $P$88
    =$O$88*$L$91
    $P$94
    =$O$94*$L$91
    $P$100
    =$O$100*$L$91
    $P$106
    =$O$106*$L$91
    $P$112
    =$O$112*$L$91
    $L$31
    =$K$31*$H$61
    $H$61

    From the script you just posted:
    $P$4
    31
    12
    $P$10
    31
    12
    $P$16
    31
    12
    $P$22
    31
    12
    $P$28
    31
    12
    $P$34
    31
    12
    $P$40
    31
    12
    $P$46
    31
    12
    $P$52
    31
    12
    $P$64
    91
    12
    $P$70
    91
    12
    $P$76
    91
    12
    $P$82
    91
    12
    $P$88
    91
    12
    $P$94
    91
    12
    $P$100
    91
    12
    $P$106
    91
    12
    $P$112
    91
    12
    $L$31
    61
    8
    $H$61
    0
    4

  8. #8
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Code breaking at one line

    there's the problem then-when the error occurs m2(tempflag).point is equal to 0 and you can't refer to row 0.

  9. #9
    Forum Contributor
    Join Date
    09-29-2011
    Location
    Cape Town
    MS-Off Ver
    Excel 2010
    Posts
    107

    Re: Code breaking at one line

    Thanks so much for helping thus far. Any idea how to rectify this. What should it be referring to?

  10. #10
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Code breaking at one line

    absolutely no idea what any of those variables are or mean so I couldn't even guess.

  11. #11
    Forum Contributor
    Join Date
    09-29-2011
    Location
    Cape Town
    MS-Off Ver
    Excel 2010
    Posts
    107

    Re: Code breaking at one line

    Any ideas on a way to proceed? Like what I should look out for or is there anyway to trace the dependencies to the bug? Thanks again for your help, at least I have isolated the cause.

  12. #12
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Code breaking at one line

    step through the code and check the value of tempflag when the error occurs. that will help you to narrow down which variable in the m2 array is at issue. the object exists (since it's not a subscript out of range error) in the m2 array but the point value is 0 so check back through the code to see where the points get assigned and work out why it is not getting a useful value.

  13. #13
    Forum Contributor
    Join Date
    09-29-2011
    Location
    Cape Town
    MS-Off Ver
    Excel 2010
    Posts
    107

    Re: Code breaking at one line

    Great thanks for the suggestions. If I do require his services I'll pm you.

  14. #14
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Code breaking at one line

    btw if you decide you need a consultant to assist you I do know a guy in SA who may be able to help you. if you want to pm me I can give you his details.

  15. #15
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: Code breaking at one line

    no problem. if you do manage to narrow it down a bit further you can always post a new question here too. :-)

+ 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