Random Numbers

nastyveg

New Member
Joined
Sep 16, 2022
Messages
16
Office Version
  1. 365
Platform
  1. MacOS
Hi, I need to create some bingo style cards. These are in a grid of 5 x 5 numbered 1 - 25 in random order.
I need to create 50 different bingo cards with numbers 1 - 25 but all in different sequences.
Can anyone help, I just can't crack it.

I hope it makes sense.

Any help would be great.

Thanks
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Bingo cards are not 1-25. There are 15 numbers for each letter in BINGO. The columns are labeled "B" (numbers 1–15), "I" (numbers 16–30), "N" (numbers 31–45), "G" (numbers 46–60), and "O" (numbers 61–75).

Can you clarify what you need?
 
Upvote 0
If you are just looking for a random square of the numbers 1-25:

Book1 (version 1).xlsb
ABCDE
132523209
2286114
3171611222
4211915105
5131814247
Sheet10
Cell Formulas
RangeFormula
A1:E5A1=LET(a,SORTBY(SEQUENCE(25),RANDARRAY(25)),INDEX(a,SEQUENCE(5,5)))
Dynamic array formulas.


If you want 50 of these, you can use the formula 50 times, or print one, then F9 to recalculate, and print and repeat as needed. But it would probably be easier to do it via VBA.
 
Upvote 0
Bingo cards are not 1-25. There are 15 numbers for each letter in BINGO. The columns are labeled "B" (numbers 1–15), "I" (numbers 16–30), "N" (numbers 31–45), "G" (numbers 46–60), and "O" (numbers 61–75).

Can you clarify what you need?
Hi, thanks for the reply. Our client as asked for a bingo style card. with numbers 1-25 randomly placed in a grid without repeat. The want 50 of these.
 
Upvote 0
This would be a bingo card:
Book1
ABCDE
2BINGO
3230325375
4427315866
51018455674
61419445467
7116334772
Sheet1
Cell Formulas
RangeFormula
A3:E7A3=LET( num,75, n,SEQUENCE(num), sec,INT((n-1)/(num/5))+1+RANDARRAY(num,,0,0.9), DROP(WRAPCOLS(CHOOSECOLS(SORT(HSTACK(n,sec),2),1),num/5),num/5-5) )
Dynamic array formulas.


And this bingo "style" card with numbers from 1-25?:
Book1
ABCDE
2BINGO
326121922
459151621
518132025
6410141824
737111723
Sheet1
Cell Formulas
RangeFormula
A3:E7A3=LET( num,25, n,SEQUENCE(num), sec,INT((n-1)/(num/5))+1+RANDARRAY(num,,0,0.9), DROP(WRAPCOLS(CHOOSECOLS(SORT(HSTACK(n,sec),2),1),num/5),num/5-5) )
Dynamic array formulas.


but i guess @Eric W s response is what you need.
 
Upvote 0
This would be a bingo card:
Book1
ABCDE
2BINGO
3230325375
4427315866
51018455674
61419445467
7116334772
Sheet1
Cell Formulas
RangeFormula
A3:E7A3=LET( num,75, n,SEQUENCE(num), sec,INT((n-1)/(num/5))+1+RANDARRAY(num,,0,0.9), DROP(WRAPCOLS(CHOOSECOLS(SORT(HSTACK(n,sec),2),1),num/5),num/5-5) )
Dynamic array formulas.


And this bingo "style" card with numbers from 1-25?:
Book1
ABCDE
2BINGO
326121922
459151621
518132025
6410141824
737111723
Sheet1
Cell Formulas
RangeFormula
A3:E7A3=LET( num,25, n,SEQUENCE(num), sec,INT((n-1)/(num/5))+1+RANDARRAY(num,,0,0.9), DROP(WRAPCOLS(CHOOSECOLS(SORT(HSTACK(n,sec),2),1),num/5),num/5-5) )
Dynamic array formulas.


but i guess @Eric W s response is what you need.
 
Upvote 0

Forum statistics

Threads
1,215,071
Messages
6,122,963
Members
449,094
Latest member
Anshu121

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top