Results 1 to 10 of 10

Formula to return random number from a list and associated name

Threaded View

  1. #3
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699

    Re: Random formula-what is wrong w/this?

    I don't think you'll get this to work with that approach using INDEX. You could probably use a similar approach with CHOOSE, i.e

    =CHOOSE(INT(RAND()*COUNTA(B9,B13,B15,B16,B17,B20,B21,B23,B25,B31,B33,B34,B35,B37,B38,B39,B41,B42,B44,B45,B47,B50,B51,B52))+1,B9,B13,B15,B16,B17,B20,B21,B23,B25,B31,B33,B34,B35,B37,B38,B39,B41,B42,B44,B45,B47,B50,B51,B52)

    but CHOOSE limits you to 29 arguments.

    I'd suggest using a helper column, e.g. in D9:D66 put either "B" or "G" to indicate boy or girl on each row (you can hide this column if you want) then you can use this formula to generate a random "B" number from column B

    =INDEX(B9:B66,SMALL(IF(D9:D66="B",ROW(D9:D66)-ROW(D9)+1),INT(RAND()*COUNTIF(D9:D66,"B")+1)))

    This is an "array formula" that needs to be confirmed with CTRL+SHIFT+ENTER. To do this select the cell with formula, press F2 key then hold down CTRL and SHIFT keys and press ENTER so that curly braces like { and } appear around the formula in the formula bar.

    Note: I've used RAND() rather than RANDBETWEEN to avoid ATP functions.....but you could also use RANDBETWEEN.....

    Note2: I don't know if you expect any cells to be blank in B9:B66. If there are then CHOOSE approach won't work correctly unless those blanks are progressively from the bottom of the range
    Last edited by daddylonglegs; 02-12-2009 at 09:36 AM.

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