+ Reply to Thread
Results 1 to 15 of 15

running a loop on a few columns simultaneously?

  1. #1
    Forum Contributor
    Join Date
    05-09-2009
    Location
    Chicago, US
    MS-Off Ver
    Excel 2003, Excel 2007
    Posts
    188

    running a loop on a few columns simultaneously?

    Hi all. I am trying to run a loop on a few columns simultaneously, from the last row to the top (well, until the 2nd row).

    So I have a few columns of data, A through I, and the number of rows they populate changes all the time.

    So how would I run a loop that will check for the following:

    If a certain row in Column F is greater than the previous row in column F by 1.5times, then in that same row, if number in Column B is greater than number in E, the code should put the the value of E in a new column, lets say M (in the same row)

    I know that sounds very confusing, but is that even possible? I am playing with loops, and I can only do very simple loops where I define a range, like
    Please Login or Register  to view this content.


    I need to see what a more complicated loop would look, like the above description of what I need. That is the only way I could learn, is if I see it and then dissect it and just learn from it.

    Thank you all. If what I have above isn't even possible, please let me know
    Last edited by losmi8; 02-13-2010 at 08:58 PM.

  2. #2
    Valued Forum Contributor
    Join Date
    06-16-2006
    Location
    Sydney, Australia
    MS-Off Ver
    2013 64bit
    Posts
    1,394

    Re: running a loop on a few columns simultaneously?

    I am happy to help. but you have to help me first. You explanation is not very intuitive. You are talking about columns and then refer to rows.

    I assume you are treating each column as an independent data set. Is that right?
    So when you say rows, what you mean is the number of data points in each column, is that correct?
    So when you say "a certain row in column F is greater than the previous row in column F, are you talking about the row number, or the value in the cell?

    Have another go at explaining it, and try adding a sample sheet for clarity

  3. #3
    Forum Contributor
    Join Date
    05-09-2009
    Location
    Chicago, US
    MS-Off Ver
    Excel 2003, Excel 2007
    Posts
    188

    Re: running a loop on a few columns simultaneously?

    alright, i attached a sample file with the data i would like the loop to run through, and the explanation is in there as well.

    let me know if that helps!
    Attached Files Attached Files

  4. #4
    Valued Forum Contributor
    Join Date
    06-16-2006
    Location
    Sydney, Australia
    MS-Off Ver
    2013 64bit
    Posts
    1,394

    Re: running a loop on a few columns simultaneously?

    much easier to understand with real data

    Now, when you say "if F8 > F9 by 1.5 times" I assume you actually mean "if F9 > F8 by 1.5 times"

    I have added the close price the day before the 1.5 volume lift in column K. An alternative would be to colour the cells/rows in the actual table, but then again I don't know why you want it in column K. Also, I have added a cell for the volume multiplier into the sheet, so you can run it for different volume lifts.

    I hope this is what you wanted

    Please Login or Register  to view this content.
    Attached Files Attached Files
    Last edited by Mallycat; 02-13-2010 at 08:33 PM.

  5. #5
    Forum Contributor
    Join Date
    05-09-2009
    Location
    Chicago, US
    MS-Off Ver
    Excel 2003, Excel 2007
    Posts
    188

    Re: running a loop on a few columns simultaneously?

    whoa! thank you! this is exactly what i was looking for!

    i think i understand what you are doing here with the loop, by selecting the last row of colum F. then u r playing with that selection, up 2 and down 2 rows, correct?

    is there a different way to code this? the way the teach u in the books, with simple "for x = something to something" or "for each..."

    or is this the only way?

    thank you so much!
    Last edited by losmi8; 02-13-2010 at 08:45 PM.

  6. #6
    Forum Contributor
    Join Date
    05-09-2009
    Location
    Chicago, US
    MS-Off Ver
    Excel 2003, Excel 2007
    Posts
    188

    Re: running a loop on a few columns simultaneously?

    also, what does the very last "went" mean in ur code?

    and the loop knows to run in reverse (from bottom to the top) because of your selection.offset(-1,-1) lines? right?

    this is so different than what i read in the books and see those simple examples where every column is defined and then they just do it like that, so sorry for all the questions!

  7. #7
    Forum Contributor
    Join Date
    05-09-2009
    Location
    Chicago, US
    MS-Off Ver
    Excel 2003, Excel 2007
    Posts
    188

    Re: running a loop on a few columns simultaneously?

    the only reason i am asking if this can be coded differently, where each column is define, is because i would like to play with this a lot more, and try to do other things with it.

    is this possible? to somehow define a whole column (from 2nd row til the last row) and then just run a loop, with statements like this:

    if volume > volume.offset(-1,0) * multipler Then
    or do we have to do the whole thing with offset statements? like in ur example?

  8. #8
    Valued Forum Contributor
    Join Date
    06-16-2006
    Location
    Sydney, Australia
    MS-Off Ver
    2013 64bit
    Posts
    1,394

    Re: running a loop on a few columns simultaneously?

    There are many ways to do this. It comes down to personal preference. But the principle is the same. You need to start somewhere (in this case the last row) and then work through each row one by one, and then stop somewhere (in this case the second to top row). Some different ways you could do this are....

    first count the number of rows, then do a for next loop like the following
    Please Login or Register  to view this content.
    This will set x = to the row you want to work on, and step backwards up the page.

    Another way would be to load your column into a range in VBA with a line of code like this.
    Please Login or Register  to view this content.
    This would start at the top of the list and work down the list, so you would need to change your code so that it checked the cell below the current cell, rather than the cell above the current cell, like this..
    Please Login or Register  to view this content.

    the wend statement relates to the while statement (ie while end). It loops between while and wend until the test is satisfied, in this case until the current row is 2, which is the top row in your list.

    Technically, using set myRange=.... is probably better, because everything is done in memory. The solution I provided you actually uses the cells in the sheet, and moves the selected cell around to keep track. This is much slower, and for this reason I have to turn off screen updating. If I didn't turn this off, it would look cool, but it would be verrrry slow.

    When I learnt to do this, I never used set myRange =.. because I didn't understand how to make it work. Once you work it out, it is probably a better way to go. I don't know why I didn't do it that way.
    Last edited by Mallycat; 02-13-2010 at 09:23 PM.

  9. #9
    Valued Forum Contributor
    Join Date
    06-16-2006
    Location
    Sydney, Australia
    MS-Off Ver
    2013 64bit
    Posts
    1,394

    Re: running a loop on a few columns simultaneously?

    Quote Originally Posted by losmi8 View Post
    i think i understand what you are doing here with the loop, by selecting the last row of colum F. then u r playing with that selection, up 2 and down 2 rows, correct?
    it is selecting the last row, and then comparing itself to the row above it (not 2 rows). When it has finished with that row, it is selecting the next row up, and then starts over again.

    Quote Originally Posted by losmi8 View Post
    the loop knows to run in reverse (from bottom to the top) because of your selection.offset(-1,-1) lines? right?
    yes, but it is selection.offset(-1,0).select, which means select the same cell in the line above.

    Quote Originally Posted by losmi8 View Post
    to somehow define a whole column (from 2nd row til the last row) and then just run a loop
    That's effectively what the set myRange... option does. You first load the target range (in your example it is the records in column F) and then loop through them using "for each cell in myRange...." approach
    Last edited by Mallycat; 02-13-2010 at 10:25 PM.

  10. #10
    Forum Contributor
    Join Date
    05-09-2009
    Location
    Chicago, US
    MS-Off Ver
    Excel 2003, Excel 2007
    Posts
    188

    Re: running a loop on a few columns simultaneously?

    Please Login or Register  to view this content.
    i think that is what i was looking for. i am assuming i would then go something like this:
    Please Login or Register  to view this content.

    yes?


    is there a way to make this run in reverse? because there are other things i would like to do, like moving averages, in which case the code would have to run from the beginning of data (last row) to the top?


    sorry for all the bugging! this is my last question regarding this, i promise

    thank you!

  11. #11
    Valued Forum Contributor
    Join Date
    06-16-2006
    Location
    Sydney, Australia
    MS-Off Ver
    2013 64bit
    Posts
    1,394

    Re: running a loop on a few columns simultaneously?

    Quote Originally Posted by losmi8 View Post
    is there a way to make this run in reverse?
    I don't know of one. But I don't see why you need to run it in reverse. You are only comparing one row with another row. You can start from the top or the bottom, and still get the same outcome. Am I missing something?

  12. #12
    Forum Contributor
    Join Date
    05-09-2009
    Location
    Chicago, US
    MS-Off Ver
    Excel 2003, Excel 2007
    Posts
    188

    Re: running a loop on a few columns simultaneously?

    for the current job, yea there is no difference at all if i do it from top to bottom or bottom to top.


    but i would like to calculate some moving averages or some other stuff that uses a running average of the previous data...in which case i would need to run it from the bottom - up.

  13. #13
    Valued Forum Contributor
    Join Date
    06-16-2006
    Location
    Sydney, Australia
    MS-Off Ver
    2013 64bit
    Posts
    1,394

    Re: running a loop on a few columns simultaneously?

    Not necessarily. I assume your running average would be over a fixed number of data points, and not every point to the bottom of the list. So for example if you wanted a 10 day running average, you could start from the top record, calcuate the average over the next 10 days, then write the record either in the first cell or the 10 cell, what ever you wanted. When you get to a point that you don't have 10 days of history, you just ignore the running total.

  14. #14
    Forum Contributor
    Join Date
    05-09-2009
    Location
    Chicago, US
    MS-Off Ver
    Excel 2003, Excel 2007
    Posts
    188

    Re: running a loop on a few columns simultaneously?

    well i just gave an example of a moving average, i would use more complex formulas that do require some kind of a running average and it would be very beneficial if i could go from the bottom-up.

    if it isn't possible, i guess i can always just sort my data differently, from oldest to newest date or something, right?

  15. #15
    Forum Contributor
    Join Date
    05-09-2009
    Location
    Chicago, US
    MS-Off Ver
    Excel 2003, Excel 2007
    Posts
    188

    Re: running a loop on a few columns simultaneously?

    but i would like to keep the newest to oldest form. so if it would be possible to run a loop like that, id love to learn how!

+ 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