+ Reply to Thread
Results 1 to 17 of 17

Random Sample w/Priority

  1. #1
    Registered User
    Join Date
    11-14-2013
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    96

    Random Sample w/Priority

    Hello, i am looking for a 'best method' for this situation...(file attached).

    The goal is to take ONE random sample for each unique Customer #.
    However, 'Cars' take priority over other purchases (example: If the random purchase sample was an apple but the same customer# also bought a car, the random sample becomes the car).

    My approach was going to be to copy a random customer# from the list to a new worksheet, then loop thru the original rows deleting matching Customer#'s while also checking for the car purchase. IF the car was purchased it would replace the copied row. in the end id be left with a unique list of customer#s, with all unique car purchases where applicable.


    Can anyone think of a simpler solution for this type of scenario?
    Attached Files Attached Files

  2. #2
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: Random Sample w/Priority

    Try this for results on sheet2 starting "A1".
    Please Login or Register  to view this content.
    Regards Mick

  3. #3
    Registered User
    Join Date
    11-14-2013
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    96

    Re: Random Sample w/Priority

    @MickG - this works great. Unfortunately for me i have never seen RAY used & am finding trouble following(stepping doesnt show results until complete).
    Can the dictionary be substituted for a simple 'remove duplicates" column in worksheet 2?.
    Does the RAY method go hand in hand with .keys/dictionary?
    ...i'm just trying to dumb down your code for a person like me to troubleshoot if need be.

  4. #4
    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: Random Sample w/Priority

    Another way:

    A
    B
    C
    D
    1
    Cust #
    Item
    Sample
    2
    22
    Apple
    0
    C2: =IF(B2 = "car", 1, IF(COUNTIFS($A$1:$A$17, A2, $B$1:$B$17, "car"), 0, --(RAND() < (1 - SUMIF(A$1:A1, A2, C$1:C1)) / COUNTIF(A2:$A$17, A2))))
    3
    33
    Banana
    0
    4
    44
    Banana
    1
    5
    22
    Banana
    0
    6
    22
    Apple
    0
    7
    11
    Apple
    1
    8
    55
    Banana
    0
    9
    33
    Car
    1
    10
    22
    Apple
    0
    11
    55
    Apple
    0
    12
    22
    Car
    1
    13
    22
    Banana
    0
    14
    55
    Banana
    1
    15
    11
    Banana
    0
    16
    11
    Apple
    0
    17
    11
    Apple
    0
    Entia non sunt multiplicanda sine necessitate

  5. #5
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: Random Sample w/Priority

    I've removed the Array "Ray" and added some notes.
    If you step through it you should see what's happening !!
    Hope that helps.
    Please Login or Register  to view this content.
    Regards Mick

  6. #6
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: Random Sample w/Priority

    Another option , No Dictionary and No array, Plus direct update on sheet2 !!
    Please Login or Register  to view this content.
    Regards Mick

  7. #7
    Registered User
    Join Date
    11-14-2013
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    96

    Re: Random Sample w/Priority

    @Mick - Thank you very much these have all been helpful!

  8. #8
    Registered User
    Join Date
    11-14-2013
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    96

    Re: Random Sample w/Priority

    Mick - If i were to need the randomized item VALUE returned (instead of "Car"), does that throw a wrench in this code?

  9. #9
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: Random Sample w/Priority

    You're welcome !!
    Try this, its got a msgbox for selection for "Car" or "Random item".
    NB:- If you want it in another code let me know !!
    Please Login or Register  to view this content.
    Regards Mick

  10. #10
    Registered User
    Join Date
    11-14-2013
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    96

    Re: Random Sample w/Priority

    Mick - Thanks for the quick reply. Just to confirm, when i choose random it is likely that a Car purchase is going to end up an Apple/Banana correct?

    Just to clarify my original question... if you were to edit the list of items purchased and number the "Car"s (Car1, Car2, Car3)... the randomized result would have the specific value of 'K'?

  11. #11
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: Random Sample w/Priority

    Mick - Thanks for the quick reply. Just to confirm, when i choose random it is likely that a Car purchase is going to end up an Apple/Banana correct?
    If you choose ("Random Item = No"), then you will get a random item that is NOT "Car".
    If you choose "Car = "yes", you will get "Car"

    Just to clarify my original question... if you were to edit the list of items purchased and number the "Car"s (Car1, Car2, Car3)... the randomized result would have the specific value of 'K'?
    I don't understand this, can you explain or perhaps show an example !!!
    Last edited by MickG; 06-26-2019 at 09:32 AM.

  12. #12
    Registered User
    Join Date
    11-14-2013
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    96

    Re: Random Sample w/Priority

    im re-attaching the file for a better explanation... (ive added multiple Cars and numbered them)
    My question was in regards to identifying the serialized Car, rather than just "Car".
    Attached Files Attached Files

  13. #13
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: Random Sample w/Priority

    So if you Select "Car = "Yes" " from the msgbox do you want to return a random car from those available, or something else ???

  14. #14
    Registered User
    Join Date
    11-14-2013
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    96

    Re: Random Sample w/Priority

    i believe my answer would be yes to a "random car from those available". Im just trying to differentiate the Cars purchased in this example.
    (so if customer 22 purchase 5 cars, i need the result to be a specific car 1 thru 5)

  15. #15
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: Random Sample w/Priority

    Try this:-
    If you select "Car= Yes" then the returned value will be a single random car from those available for that customer.
    Please Login or Register  to view this content.
    Regards Mick

  16. #16
    Registered User
    Join Date
    11-14-2013
    Location
    New York
    MS-Off Ver
    Excel 2010
    Posts
    96

    Re: Random Sample w/Priority

    These are all excellent examples to my questions. Thank you again MickG!

  17. #17
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: Random Sample w/Priority

    You're welcome

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Random Sample
    By JThirsty in forum Excel General
    Replies: 3
    Last Post: 02-16-2018, 10:05 PM
  2. How to get a random sample from list
    By mrotsliah in forum Excel General
    Replies: 2
    Last Post: 10-10-2014, 03:03 PM
  3. Random Sample with Parameters
    By alexandrite in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-14-2011, 01:29 PM
  4. Random Sample
    By Saarang84 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-18-2009, 07:31 PM
  5. Assigning random priority with RAND function
    By stabilizer in forum Excel General
    Replies: 3
    Last Post: 05-11-2007, 03:46 AM
  6. Random sample
    By RIROCKHOUND in forum Excel General
    Replies: 1
    Last Post: 11-09-2006, 07:17 PM
  7. random sample
    By skimpw in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 08-14-2006, 08:15 PM

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