+ Reply to Thread
Results 1 to 10 of 10

Assign Gender with 50% Frequency

  1. #1
    Registered User
    Join Date
    11-06-2013
    Location
    Lisbon, Portugal
    MS-Off Ver
    Excel 2007
    Posts
    4

    Assign Gender with 50% Frequency

    Hi there,

    First, i would like to say thanks to all off you that contribute to this Fórum.

    I hope you can help me with this problem in Excel.

    So i've got a 20 row's table with Identification, Gender, etc etc.

    I would like that Excel in the Gender column, randomly filled with the word Female or Male. The problem is that it must be with 50% frequency.

    Something like: 10 Females and 10 Males

    I'm using this fórmula: =choose(RANDBETWEEN(1;2);"Female";"Male") but this only fills the columns, doesn't give me the 10 Female and 10 Male.

    Hope you guys get it... sorry for the English...
    Thank you

  2. #2
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Assign Gender with 50% Frequency

    Does it need to be exactly 10 and 10 or approximately 50%. If approximately, your formula should do it.
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Registered User
    Join Date
    11-06-2013
    Location
    Lisbon, Portugal
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Assign Gender with 50% Frequency

    Yeah... i'm really trying to get the 10/10. :S

    Thanks

  4. #4
    Forum Contributor vamosj's Avatar
    Join Date
    04-23-2004
    Location
    Oregon
    MS-Off Ver
    2010
    Posts
    294

    Re: Assign Gender with 50% Frequency

    I am trying to figure out this formula but the one problem I am encountering is this being a circular reference.

    The formula I'm using here is counting the intances of Male:Female and trying to adjust it as it goes to ensure the amount of male's to female's remains equal. This is based off of a Random Chance in Cell B1 and then going from there, only picking at random again if the # Male's = # Female's. The problem with Random is that it changes each time new data is entered anywhere in the sheet and once again changes the values in the cells.. So this may not solve the problem, but it may give others some ideas to get us towards the final solution...



    =IF(COUNTIF(B:B,"Male")=COUNTIF(B:B,"Female"),IF(RANDBETWEEN(1,2)=1,"Male","Female"),IF(COUNTIF(B:B,"Male")>COUNTIF(B:B,"Female"),"Female","Male"))
    Janos S. Vamos
    Data Systems Technician/Fire Controlman PO1(SW/AW)
    US Navy Retired


    Remember, Record Macro can be your friend for figuring out solutions.

    Good or Bad, let me know how I did by clicking on the "Add Reputation" * just to the lower left of here. it only takes a few seconds to let someone know.

  5. #5
    Forum Expert dredwolf's Avatar
    Join Date
    10-27-2012
    Location
    Clearwater,Canada
    MS-Off Ver
    Excel 2007
    Posts
    2,649

    Re: Assign Gender with 50% Frequency

    @ Vamosj
    Maybe don't use the whole column as a reference (this is giving you the circular reference), try instead to get it to read like this, B$1:B1 when your are in B2 ( this will check the previous cells, for the counts, then decide which formula to use ?
    A picture may be worth a thousand words, BUT, a sample Workbook is worth a thousand screenshots!
    -Add a File - click advanced (next to quick post), scroll to manage attachments, click, select add files, click select files, select file, click upload, when file shows up at bottom left, click done (bottom right), click submit
    -To mark thread Solved- go top of thread,click Thread Tools,click Mark as Solved
    If you received helpful response, please remember to hit the * of that post

  6. #6
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: Assign Gender with 50% Frequency

    Hi,

    I'm afraid the only true method to ensure a genuinely random selection here would be to enter your formula into 20 cells, use an additional cell to monitor the ratio of Males to Females and then iterate enough times until that cell shows 50%.

    Solutions whose calculations for later cells are in some way influenced by results in preceding cells are by definition not random.

    Regards
    Click * below if this answer helped

    Advanced Excel Techniques: http://excelxor.com/

  7. #7
    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: Assign Gender with 50% Frequency

    B
    C
    1
    Gender
    2
    M B2: =CHOOSE(SIGN(COUNTIF(B$1:B1, "M") - COUNTIF(B$1:B1, "F")) + 2, "M", CHOOSE(RANDBETWEEN(1,2), "M","F"), "F")
    3
    F
    4
    F
    5
    M
    6
    M
    7
    F
    8
    M
    9
    F
    10
    F
    11
    M
    12
    M
    13
    F
    14
    M
    15
    F
    16
    F
    17
    M
    18
    M
    19
    F
    20
    M
    21
    F


    That doesn't generate a very random sequence. It would be better to list 10 M and 10 F, add a random column next to it, and sort by that.
    Entia non sunt multiplicanda sine necessitate

  8. #8
    Registered User
    Join Date
    11-06-2013
    Location
    Lisbon, Portugal
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Assign Gender with 50% Frequency

    Amazing.
    Thank's a lot to you all.
    In the last few days i've been crashing my head with this fórmula...

    The formula shg gave is enough. It will work.

    Thanks again

  9. #9
    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: Assign Gender with 50% Frequency

    Ooh, this is much better:

    B
    C
    1
    Gender
    2
    F B2: =IF(RANDBETWEEN(COUNTIF(B$1:B1, "M"), 19 - COUNTIF(B$1:B1, "F")) > 9, "F", "M")
    3
    F
    4
    M
    5
    M
    6
    M
    7
    M
    8
    F
    9
    M
    10
    F
    11
    M
    12
    M
    13
    M
    14
    F
    15
    F
    16
    M
    17
    F
    18
    M
    19
    F
    20
    F
    21
    F

  10. #10
    Registered User
    Join Date
    11-06-2013
    Location
    Lisbon, Portugal
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Assign Gender with 50% Frequency

    shg,

    Thanks, that work's amazing.

+ 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. Gender Variants
    By ibizian in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 02-21-2013, 05:06 PM
  2. [SOLVED] Sort name, winner and gender
    By mmanuel99 in forum Excel General
    Replies: 2
    Last Post: 01-15-2013, 12:15 AM
  3. Pivot Formula: Gender(male)/Gender(female)
    By peterso in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-04-2011, 04:23 PM
  4. Creating gender list
    By drennjoe in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 03-10-2008, 10:12 AM
  5. histograms - frequency and relative frequency?
    By confusedstudent in forum Excel General
    Replies: 2
    Last Post: 02-08-2006, 04:25 AM

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