+ Reply to Thread
Results 1 to 16 of 16

Syntax for breaking code lines

  1. #1
    Forum Contributor
    Join Date
    12-08-2005
    Location
    Silicon Valley, CA USA
    MS-Off Ver
    2013 - Using 64 bit system
    Posts
    275

    Syntax for breaking code lines

    Hi,
    I am trying to break code line in several short ones. I am using underscore as break point.
    It seems I am doing something wrong.
    Please help.
    Thank you
    Jaz
    Last edited by jazbath; 05-22-2010 at 09:19 PM.

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Syntax for breaking code lines

    It's actually a space followed by an underscore.
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Contributor
    Join Date
    12-08-2005
    Location
    Silicon Valley, CA USA
    MS-Off Ver
    2013 - Using 64 bit system
    Posts
    275

    Re: Syntax for breaking code lines

    Quote Originally Posted by shg View Post
    It's actually a space followed by an underscore.
    Hi Shg,
    Thanks for replying. Yes I am doing the same, but I get this error "expected list separator or (" Here is the code line:
    HTML Code: 
    Thanks
    Jaz

  4. #4
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Syntax for breaking code lines

    Where the continuation forms a string you would use & _, the breaking line must end with " and the subsequent line must commence with " (ie joining two strings), eg:

    Please Login or Register  to view this content.
    However, in your example you can shorten the code to reflect the contiguous ranges, eg:

    Please Login or Register  to view this content.

  5. #5
    Forum Contributor
    Join Date
    12-08-2005
    Location
    Silicon Valley, CA USA
    MS-Off Ver
    2013 - Using 64 bit system
    Posts
    275

    Re: Syntax for breaking code lines

    Quote Originally Posted by DonkeyOte View Post
    Where the continuation forms a string you would use & _, the breaking line must end with " and the subsequent line must commence with " (ie joining two strings), eg:

    Please Login or Register  to view this content.
    However, in your example you can shorten the code to reflect the contiguous ranges, eg:

    Please Login or Register  to view this content.
    Hi DonkeyOte,

    Thank you for helping. I tried what you explained, but it did not work.

    here is what I am doing:

    HTML Code: 
    Let me know please. the error I am getting is "Application defined error"

    Thank you
    Jaz

  6. #6
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Syntax for breaking code lines

    Select the cells of interest and create a named range, which would be more flexible.

    Please Login or Register  to view this content.
    Last edited by shg; 05-20-2010 at 05:25 PM.

  7. #7
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Syntax for breaking code lines

    Jaz, that's not quite what I suggested....

    However, based on your latest code - you are perhaps missing a comma delimiter between the last range on the first line and the first range on the continuation line...

  8. #8
    Forum Contributor
    Join Date
    12-08-2005
    Location
    Silicon Valley, CA USA
    MS-Off Ver
    2013 - Using 64 bit system
    Posts
    275

    Re: Syntax for breaking code lines

    Quote Originally Posted by DonkeyOte View Post
    Jaz, that's not quite what I suggested....

    However, based on your latest code - you are perhaps missing a comma delimiter between the last range on the first line and the first range on the continuation line...
    donkyOte,
    I have tried that too it does not work.
    Jaz

  9. #9
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Syntax for breaking code lines

    Post a sample illustrating the prior suggestions (not working).

  10. #10
    Forum Contributor
    Join Date
    12-08-2005
    Location
    Silicon Valley, CA USA
    MS-Off Ver
    2013 - Using 64 bit system
    Posts
    275

    Re: Syntax for breaking code lines

    DonkyOte & Shg,

    Since Shg advised me to do ranges, I have tried that and managed to cut down the line length.
    But still it is too long, I have 4 hrs. readings to grab from the log sheet. I am posting my present working code line. Please show me the syntax to break it into two, that will help me a lot.
    Thank you
    Jaz
    Set Rng = WksSrc.Range("infoone,infotwo,infothree,oneMin,twoMin,fourMin,sixMin,eightMin,tenMin,twlMin,frteenMin,sixtnMin,eghtinMin,twntyMin,twnty5Min,thrtMin,frt5Min")

  11. #11
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Syntax for breaking code lines

    Jaz, we're going around in circles I think.

    As already outlined:

    Please Login or Register  to view this content.
    That said you may still find the string is too long in terms of line continuations in which case create multiple shorter range strings and Union them into one large range upon completion, eg:

    Please Login or Register  to view this content.

  12. #12
    Forum Expert
    Join Date
    03-31-2009
    Location
    Barstow, Ca
    MS-Off Ver
    Excel 2002 & 2007
    Posts
    2,164

    Re: Syntax for breaking code lines

    Please Login or Register  to view this content.
    There is no comma between g16 & b17
    Foxguy

    Remember to mark your questions [Solved] and rate the answer(s)
    Forum Rules are Here

  13. #13
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,943

    Re: Syntax for breaking code lines

    This line:
    Please Login or Register  to view this content.
    is not what SHG suggested. You were supposed to go to the first cell, C3, then while holding Ctrl, select each and every cell in the original range. Then give the entire selection a SINGLE name. What are you trying to do, maybe there's an alternative.
    Ben Van Johnson

  14. #14
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Syntax for breaking code lines

    Quote Originally Posted by protonLeah
    You were supposed to ...
    Exactly. And done in that fashion, it accommodates inserting & deleting rows & columns, as long as they're not part of the range.

  15. #15
    Forum Contributor
    Join Date
    12-08-2005
    Location
    Silicon Valley, CA USA
    MS-Off Ver
    2013 - Using 64 bit system
    Posts
    275

    Re: Syntax for breaking code lines

    Quote Originally Posted by foxguy View Post
    There is no comma between g16 & b17
    Hi protonLeah,
    Thanks for responding. I have to grab data from several cells in a run sheet. I am not interested in every bit of data in that sheet. You can see that from my ranges which are not in sequence. For this reason I named a bunch of cells which are in sequence for my convenience.
    Anyway i guess it is working for now. but I will certainly try the way you explained what Shg has said,perhaps I did not understand correctly.

    Thank you
    Jaz

  16. #16
    Forum Contributor
    Join Date
    12-08-2005
    Location
    Silicon Valley, CA USA
    MS-Off Ver
    2013 - Using 64 bit system
    Posts
    275

    Re: Syntax for breaking code lines

    Quote Originally Posted by jazbath View Post
    Hi protonLeah,
    Thanks for responding. I have to grab data from several cells in a run sheet. I am not interested in every bit of data in that sheet. You can see that from my ranges which are not in sequence. For this reason I named a bunch of cells which are in sequence for my convenience.
    Anyway i guess it is working for now. but I will certainly try the way you explained what Shg has said,perhaps I did not understand correctly.

    Thank you
    Jaz
    Hi ProtolLeah & Shg,

    I tried that as one single range by selecting all cells holding ctrl key and it worked! Wonderful I had just put one single range instead of long line.
    Thank you.
    Jaz

+ 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