• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Search results

  1. N

    How to generate random ranges of data from a specific range on a separate sheet.

    Thanks Luke...Everything is working great...You are a genius!!
  2. N

    How to generate random ranges of data from a specific range on a separate sheet.

    Great, Any Secret to copying the contents of the 7 cells to new location? I have tried and only see the first set calculating correctly ($A$1:$C$3).
  3. N

    How to generate random ranges of data from a specific range on a separate sheet.

    Luke M, This is really starting to look great!! If the contents of C2&C3 is blank because 'Single' was chosen is there a way to get a 'X' to appear in those cells? Same is true if 'Double' is chosen..is there a way to have a 'X' appear in C3 (blank Cell)?
  4. N

    How to generate random ranges of data from a specific range on a separate sheet.

    What I have so far. Sheet 1 -- Has data in Cells $A$1:$E$54 Sheet 2-- A1=CHOOSE(RANDBETWEEN(1,3),"Single","Double","Triple") B1=RANDBETWEEN(1,54) B2=INDEX(IF(ROW(A1:A54)<>B2,ROW(A1:A54)),RANDBETWEEN(1,53))...
  5. N

    How to generate random ranges of data from a specific range on a separate sheet.

    Luke M, Thanks for looking over that. Still fuzzy on your answer. Where is 'Double' referenced in the function? Basically I want to see one random row of Data on Sheet 2 that comes from A1 through E1 or up to A54 through E54 from Sheet 1 if Sheet 2's A1 = 'Single' (chosen at random...
  6. N

    How to generate random ranges of data from a specific range on a separate sheet.

    Data is on Sheet 1, Function is on Sheet 2 In Columns A1 through E1 on Sheet 1 54 Rows on Sheet 1 What I need: A1 on Sheet 2 needs to Randomly choose 'Single','Double',or'Triple' B1 =If A1 = 'Single' then display one row using ($A$1:$E$54) from Sheet 1 output to $C$1:$G$1 on Sheet 2 =If...
  7. N

    How to include text as a true value alongside other data in a nested IF

    Hui..Thanks for finding that. Amazing.
  8. N

    How to include text as a true value alongside other data in a nested IF

    Hui, You are incredible..That works!!
  9. N

    How to include text as a true value alongside other data in a nested IF

    Indian, I used =IF(A7<19,"Singles --- "&RANDBETWEEN(1,19),IF(AND(A7>18,A9<37),"Doubles --- "&RANDBETWEEN(20,91),IF(A7>36,"Triples --- "&RANDBETWEEN(92,215),""))) Sometimes when I recalculate (F9 in 2003, autocalculation is turned off). I get a blank or null value from the...
  10. N

    How to include text as a true value alongside other data in a nested IF

    A7~~=RANDBETWEEN(1,54) B7~~=IF(A7<19,RANDBETWEEN(1,19),IF(AND(A7>18,A7<37),RANDBETWEEN(20,91),IF(A7>36,RANDBETWEEN(92,215),""))) What I would like to accomplish is displaying a Word or some variable characters along side the random numerical number chosen in B7. For...
  11. N

    How to generate random numbers and have a function reference the formula.

    Fantastic...I forgot that I had automatic calculation turned off ;P...Looks like everything is working good now :) Thanks for all the help!!
  12. N

    How to generate random numbers and have a function reference the formula.

    Oldchippy, I installed the Add-in. When in Data analysis I should select the Random Number Generation, correct? What values should I use for each field? Thanks!
  13. N

    How to generate random numbers and have a function reference the formula.

    Oldchippy, Thanks for reply. That was a typo indeed. The values were <20 returns 1-19, >19 or <37 returns 1-73, and >36 returns 1-127. All the returns are random...
  14. N

    How to generate random numbers and have a function reference the formula.

    What I am trying to accomplish Cell A7 uses =ROUND((RAND()*(0-54)+54),0) to give me rounded whole number between 1 and 54 Cell B7 uses this function =IF(A7<20,ROUND((RAND()*(0-19)+19),0),IF(A7>19,ROUND((RAND()*(0-73)+73),0),IF(A7>73,ROUND((RAND()*(0-127)+127),0)))) 2 Problems...
Back
Top