ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   GENERATE RANDOM NUMBERS BUT EXCLUDE A NUMBER IN THE SEQUENCE (https://www.excelbanter.com/excel-discussion-misc-queries/38817-generate-random-numbers-but-exclude-number-sequence.html)

Tracker

GENERATE RANDOM NUMBERS BUT EXCLUDE A NUMBER IN THE SEQUENCE
 
I NEED TO GENERATE A RANDOM NUMBER BETWEEN 1-9 BUT NEED TO EXCLUDE WHATEVER
IS IN THE CELL ABOVE IT. IF THE CELL ABOVE IT SAYS 8. I NEED TO GENERATE
1,2,3,4,5,6,7,OR 9. IM STUMPED?

Jay

I NEED TO GENERATE A RANDOM NUMBER BETWEEN 1-9 BUT NEED TO EXCLUDE
WHATEVER IS IN THE CELL ABOVE IT. IF THE CELL ABOVE IT SAYS 8. I NEED
TO GENERATE 1,2,3,4,5,6,7,OR 9. IM STUMPED?


On way:

In A2:A100, put
=RANDBETWEEN(1,8)

In B1, put
=RANDBETWEEN(1,9)

In B2, put
=A2+(A2=B1)
and copy down to B100

Use the values in column B.

Tracker

I might of explained it wrong. I want to use random(1,9) but for example i
dont want 5 in the random possibility.Is that possible?

"Jay" wrote:

I NEED TO GENERATE A RANDOM NUMBER BETWEEN 1-9 BUT NEED TO EXCLUDE
WHATEVER IS IN THE CELL ABOVE IT. IF THE CELL ABOVE IT SAYS 8. I NEED
TO GENERATE 1,2,3,4,5,6,7,OR 9. IM STUMPED?


On way:

In A2:A100, put
=RANDBETWEEN(1,8)

In B1, put
=RANDBETWEEN(1,9)

In B2, put
=A2+(A2=B1)
and copy down to B100

Use the values in column B.


JE McGimpsey

Did you try "Jay"s solution? If you copy A2:B2 down as far as desired,
you get results (in column B) for each cell in the range [1...9]
excluding the value in the "cell above it".

This post, at least as far as I can tell, doesn't add any information
that would indicate that "Jay"s solution doesn't fit.

Do you *always* want to exclude the same number? Do you want to exclude
more than one number (e.g., 8 and 5)?


In article ,
"Tracker" wrote:

I might of explained it wrong. I want to use random(1,9) but for example i
dont want 5 in the random possibility.Is that possible?


Tracker

Yes that helps.but lets say i needed to randomize 1-9 in nine cells that
exclude the number in the top cell of the nine cells?

"JE McGimpsey" wrote:

Did you try "Jay"s solution? If you copy A2:B2 down as far as desired,
you get results (in column B) for each cell in the range [1...9]
excluding the value in the "cell above it".

This post, at least as far as I can tell, doesn't add any information
that would indicate that "Jay"s solution doesn't fit.

Do you *always* want to exclude the same number? Do you want to exclude
more than one number (e.g., 8 and 5)?


In article ,
"Tracker" wrote:

I might of explained it wrong. I want to use random(1,9) but for example i
dont want 5 in the random possibility.Is that possible?



Eric

Tracker,

Another way, which might be a little more complicated is to use IFs for
different ranges. For example, if you wanted a random number between 1-4 or
6-9 (ie, not 5) you could make a formula that 50% of the time gives a number
between 1 and 4 and 50% of the time gives a number between 6 and 9. This
one's easy though, because it's 50-50. If you want to remove numbers other
than 5, you'd have to modify the proportions.

=if( rand() < 0.5, RANDBETWEEN(1,4), RANDBETWEEN(6,9) )


Let's see. If you're always working between 1 and 9, and the number you
want to exlude is "X", then:

=if( rand() < (X-1)/8, RANDBETWEEN(1,X-1), RANDBETWEEN(X+1,9) )

I have to run, so I haven't checked if this formula works, but it or
something like it should do the job.

Eric


"Tracker" wrote:

Yes that helps.but lets say i needed to randomize 1-9 in nine cells that
exclude the number in the top cell of the nine cells?

"JE McGimpsey" wrote:

Did you try "Jay"s solution? If you copy A2:B2 down as far as desired,
you get results (in column B) for each cell in the range [1...9]
excluding the value in the "cell above it".

This post, at least as far as I can tell, doesn't add any information
that would indicate that "Jay"s solution doesn't fit.

Do you *always* want to exclude the same number? Do you want to exclude
more than one number (e.g., 8 and 5)?


In article ,
"Tracker" wrote:

I might of explained it wrong. I want to use random(1,9) but for example i
dont want 5 in the random possibility.Is that possible?



Tracker

Sounds like that will work.Thankyou

"Tracker" wrote:

I NEED TO GENERATE A RANDOM NUMBER BETWEEN 1-9 BUT NEED TO EXCLUDE WHATEVER
IS IN THE CELL ABOVE IT. IF THE CELL ABOVE IT SAYS 8. I NEED TO GENERATE
1,2,3,4,5,6,7,OR 9. IM STUMPED?



All times are GMT +1. The time now is 08:09 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com