+ Reply to Thread
Results 1 to 18 of 18

inputing a lotid and returning the lowest or top values in a list of lotids

  1. #1
    Forum Contributor
    Join Date
    12-01-2007
    Location
    USA-North Carolina
    MS-Off Ver
    MS Office 2016
    Posts
    2,712

    inputing a lotid and returning the lowest or top values in a list of lotids

    see enclosed file as well. I tried to indicate in the file what i was looking for. I am not sure this is even possible without macros but i hope it is.

    I have this raw data (see raw data worksheet).


    I want to input a lotid and then have the top 5 (if there are 5) values returned based on the lotid that i enter. If the status1 is "Not yet due" then the # of days will be greater than zero indicating that something is planned in the future by this many days and i want the top 5 (ie...the 5 with the lowest numbers) ....ie the ones that will be occuring the soonest.

    If the status1 is "Not met and not complete" then the # of days will be negative......indicating that something is overdue........in this case i again want the top 5 lowest ......ie the most overdue.

    Again, i dont even know if this is possible.......just hoping that it is. A

    Any help you can give to move me along the path of finding the answer would be appreciated.
    Attached Files Attached Files
    Last edited by NBVC; 10-20-2011 at 07:46 AM.

  2. #2
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,300

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    Hi,
    I did a pivot table with your data. Does it help answer your question? See attached.
    Attached Files Attached Files
    One test is worth a thousand opinions.
    Click the * Add Reputation below to say thanks.

  3. #3
    Forum Contributor
    Join Date
    12-01-2007
    Location
    USA-North Carolina
    MS-Off Ver
    MS Office 2016
    Posts
    2,712

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    no i cant do a pivot table.

    The way the sheet will be set up eventually is the user will select a lotid from a list of lotids.........once they select one i was hoping to populate the "5 rows" with values if there were values to poplulate.

    Does this make sense why the pivot table wont work?

  4. #4
    Forum Contributor
    Join Date
    12-01-2007
    Location
    USA-North Carolina
    MS-Off Ver
    MS Office 2016
    Posts
    2,712

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    i came up with a soln but i had to add another column called "number" which has a value in it if the status is the right value. The value in number is actually a number which corresponds to the right number value i am looking for.......i probablyl did not explain that very well.......enclosing file for you to review.

    I found this array formula in the one of john walkenbach's books i borrowed from someone......i did not come up with this on my own.........wish i was that good.
    Attached Files Attached Files

  5. #5
    Forum Contributor
    Join Date
    12-01-2007
    Location
    USA-North Carolina
    MS-Off Ver
    MS Office 2016
    Posts
    2,712

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    if someone knows a better way to do it please let me know...............

  6. #6
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    See attached for another method:

    in H29:

    Please Login or Register  to view this content.
    in I29:

    Please Login or Register  to view this content.
    confirmed with CTRL+SHIFT+ENTER and copied across L29

    in M29:

    Please Login or Register  to view this content.
    confirmed with CTRL+SHIFT+ENTER

    all formulas then copied down 5 rows.
    Attached Files Attached Files
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  7. #7
    Forum Contributor
    Join Date
    12-01-2007
    Location
    USA-North Carolina
    MS-Off Ver
    MS Office 2016
    Posts
    2,712

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    Cool! How do you know all this stuff! very cool.

    I will review and probably have questions later. Thanks!

    Is there an advantage of using your way vs the one i came up......again i have not reviewed yours in detail yet.

    thanks again.

  8. #8
    Forum Contributor
    Join Date
    12-01-2007
    Location
    USA-North Carolina
    MS-Off Ver
    MS Office 2016
    Posts
    2,712

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    Finally getting around to looking at this........i never would have figured this out on my own. Very clever. It took me a while but i see how you're doing it via the formulas.

    I was wondering though if you could explain a little about this formula........not following this one too well.

    Please Login or Register  to view this content.

  9. #9
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    Please Login or Register  to view this content.
    The first part IF($M29="","" checks if there is a LotId in column M and returns a blank if not.


    The second part of the formula is processed if lotid exists in column M:

    INDEX(B$2:B$1421,SMALL(IF($A$2:$A$1421=$I$26,IF($F$2:$F$1421=$M29,ROW($F$2:$F$1421)-ROW($F$2)+1)),COUNTIF($M$29:$M29,$M29)))

    is like a vlookup for multiple matches... It uses the Index() function which requires you to index the table or column to extract from and it requires the Row number to extract from which is gotten from this part: SMALL(IF($A$2:$A$1421=$I$26,IF($F$2:$F$1421=$M29,ROW($F$2:$F$1421)-ROW($F$2)+1)

    The Small() function just allows us to step up and extract one match at a time, starting from the first match found. It will extract only if the lotid is found in range $A$2:$A$1421 and # of days in $F$2:$F$1421 matches the number of days extracted in column M with a similar formula to this, and then it will return the corresponding row number within the range. The ROW($F$2)+1 is added for robustness (incase you insert rows above, then the result won't skew) and to offset the row count to start with 1 at Row 2.

    The last part COUNTIF($M$29:$M29,$M29)) is the k factor for the Small() function, which is like a step factor in a For...next loop in VBA. It counts increasing by one as you copy down.

    The CSE confirmation is because it is an array formula and you have to confirm with those keys to make these formulas work.

    Then you copy down.

    Hope this clarifies a bit.
    __________________

  10. #10
    Forum Contributor
    Join Date
    12-01-2007
    Location
    USA-North Carolina
    MS-Off Ver
    MS Office 2016
    Posts
    2,712

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    ok, i thought i would try and explain where i am getting confused.........hoping that by doing so i might learn what i dont know.

    Please Login or Register  to view this content.
    So this is an array type formula to


    section1:
    Please Login or Register  to view this content.
    will product a bunch of true and false statements only being true where the value in column A is equal to the value stored in I26.



    section2:
    Please Login or Register  to view this content.
    will product a bunch of true and false statements...only being true where values in column F equal the element stored in M33


    section3:
    Please Login or Register  to view this content.
    will produce a bunch of true and false statements........not sure what this is for...........




    ok, so what you do is turn the true's into 1's and the false's into 0's.

    Then multiply section3 and section2...............take this result ...call it section32...........


    Then multiply secion32 and section1...........take this result as section321. Where section321 is equal to 1 is the result we want...............



    I just dont get section 3
    section3:
    Please Login or Register  to view this content.

  11. #11
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    ROW($F$2:$F$1421)-ROW($F$2)+1 doesn't return TRUE/FALSEs it returns an array of row numbers from 1 to 1420

    So first this part: IF($A$2:$A$1421=$I$26,IF($F$2:$F$1421=$M33 is processed.. this part IF($A$2:$A$1421=$I$26 returns TRUEs and FALSEs and then for all the TRUEs further test of IF($F$2:$F$1421=$M33 is done, so that the TRUEs line up for both conditions.. we could have also done IF(($A$2:$A$1421=$I$26)*($F$2:$F$1421=$M33),.... which returns 1s and 0s after multiplying arrays of TRUEs and FALSEs. The final sets of TRUEs (or 1's if you use latter method) lines up with the Row numbers from ROW($F$2:$F$1421)-ROW($F$2)+1. Then Smallest row number is taken (where it lines up with the first TRUE result) because the k factor for the SMALL function is 1 from the COUNTIF($M$29:$M29,$M29) and that is INDEXed against B$2:B$1421 to return the first date...

    when you copy formula down then COUNTIF($M$29:$M30,$M30) returns 2 and so that means the second Smallest row number is returned (where TRUE result from the 2 conditions) and that is INDEXed against B$2:B$1421 to return the second date... and so on.

    Note: If you reduce the range sizes to say rows 175 to 185 in the formula, and CSE confirm it, and copy it down, then go to Formulas | Evaluate Formula, you can see the steps it takes to give the results....
    Last edited by NBVC; 10-19-2011 at 02:53 PM.

  12. #12
    Forum Contributor
    Join Date
    12-01-2007
    Location
    USA-North Carolina
    MS-Off Ver
    MS Office 2016
    Posts
    2,712

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    also


    Please Login or Register  to view this content.
    i know this should equal 4 .....right? But when i put this formula into excel it gives the value of "1"................

    anythoughts?

  13. #13
    Forum Contributor
    Join Date
    12-01-2007
    Location
    USA-North Carolina
    MS-Off Ver
    MS Office 2016
    Posts
    2,712

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    NBVC,

    Just read your post......thanks.

    I understand a bit more now......however, i still dont have a clue about this

    Please Login or Register  to view this content.
    I just dont get it at all..........

  14. #14
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    When you confirm a formula with CSE and it contains ROW($F$2:$F$1421)-ROW($F$2)+1 then it produces an array of numbers....

    e.g

    {2,3,4,5,6,7,8,9........1421}

    the -ROW($F$2) part converts that array to:

    {0,1,2,3,4,5,6,7,.......1419}

    and the +1 re-aligns it as

    {1,2,3,4,5,6,7,8,.......1420}

    So the SMALL() takes the smallest if these numbers where the conditions checked yield a final result of TRUE... that is the position number needed in the INDEX(range,ver_position) function.

    You could theoretically just use ROW($F$1:$F$1420) to give you {1,2,3,4,5,6,7,8... 1420}.. but our method adds a bit of robustness in case you add rows above, then it realigns correctly..
    Last edited by NBVC; 10-19-2011 at 03:20 PM.

  15. #15
    Forum Expert GeneralDisarray's Avatar
    Join Date
    09-15-2011
    Location
    Pittsburgh, PA, USA
    MS-Off Ver
    Windows Excel 2016
    Posts
    1,416

    Unhappy Re: inputing a lotid and returning the lowest or top values in a list of lotids



    i swear to god...thought i was smart till i started reading your postings



    that's frigin' awesome though...
    Remember, saying thanks only takes a second or two. Click the star icon(*) below the post you liked, to give some Rep if you think an answer deserves it.

    Please,mark your thread [SOLVED] if you received your answer.

  16. #16
    Forum Contributor
    Join Date
    12-01-2007
    Location
    USA-North Carolina
    MS-Off Ver
    MS Office 2016
    Posts
    2,712

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    NBVC,

    If i put the following into a cell by itself

    Please Login or Register  to view this content.

    and then press CSE.................the result i get is "1" and when i do evaluate formula and look at it.........

    i see

    ROW($F$2:$F$1421) goes to 2

    ROW($F$2) goes to 2

    so result ends up being 2-2+1 ................1



    i like your explanation but i was wondering why when i put just the formula above in why it does not produce the result you mentioned.

  17. #17
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    Well it needs to be within a function to trigger that way...

    e.g.

    Try:

    =SMALL(IF($A$175:$A$185=4050182,ROW($F$175:$F$185)-ROW($F$175)+1),1)

    then go through the Evaluate Formula tool...

    You should result in 6, meaning at the 6th row with range A175:A185 is the first TRUE result for $A$175:$A$185=4050182

  18. #18
    Forum Contributor
    Join Date
    12-01-2007
    Location
    USA-North Carolina
    MS-Off Ver
    MS Office 2016
    Posts
    2,712

    Re: inputing a lotid and returning the lowest or top values in a list of lotids

    ok......so you cant just have that formula on its own even though you use CSE.............

    thanks for the

    Please Login or Register  to view this content.
    running this subset in CSE really helped see what was going on.........thanks.

    i wonder why the formula does not work by itself even with CSE.........oh well.


    thanks for your help!

+ 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