phongchaunadine
New member
## Cách tạo số ngẫu nhiên trong Excel
Excel có hai chức năng rất hữu ích khi tạo các số ngẫu nhiên: Rand và Randbetween.
### rand
Hàm Rand tạo ra một số thập phân ngẫu nhiên từ 0 đến 1.
1. Chọn ô A1.
2. Loại `= rand ()` và nhấn enter.
Hàm Rand không có tham số.
3. Để tạo danh sách các số ngẫu nhiên, chọn ô A1, nhấp vào góc dưới bên phải của ô A1 và kéo xuống.
Lưu ý rằng ô A1 đã thay đổi.Đó là bởi vì các số ngẫu nhiên thay đổi khi một ô trên trang thay đổi.
4. Nếu bạn không muốn điều này, chỉ cần sao chép các số ngẫu nhiên và dán chúng dưới dạng giá trị.
5. Chọn ô C1 và nhìn vào thanh công thức.Tế bào này hiện giữ một giá trị, không phải chức năng RAND.
### randbetween
Hàm Randbet giữa tạo ra một số nguyên ngẫu nhiên giữa hai giá trị.
1. Chọn ô A1.
2. Nhập `= randbetween (50,75)` và nhấn Enter.
3. Nếu bạn muốn tạo số thập phân ngẫu nhiên từ 50 đến 75, vui lòng sửa đổi chức năng RAND như sau:
`` `
= Rand ()*75+50
`` `
### randarray
Nếu bạn đang sử dụng Excel 365, bạn có thể sử dụng chức năng Randarray.
1. Theo mặc định, hàm randarray tạo ra các số thập phân ngẫu nhiên từ 0 đến 1.
2. Hàm Randarray bên dưới tạo ra một mảng số nguyên, 10 hàng x 1 cột, từ 20 đến 80.
`` `
= Randarray (10,1,20,80, đúng)
`` `
Lưu ý: Boolean true (tham số thứ năm) của hàm randarray trả về một mảng số nguyên.Sử dụng sai để trả lại một mảng thập phân từ 20 đến 80.
Ngoài ra, bạn cũng có thể thấy nhiều mẹo Excel khác ở đây.
Tags ####
=======================================
## How to create random numbers in Excel
Excel has two very useful functions when creating random numbers: Rand and Randbetween.
### Rand
The Rand function produces a random decimal from 0 to 1.
1. Select cell A1.
2. Type `=Rand()` and press Enter.
The Rand function has no parameters.
3. To create a list of random numbers, select the A1 cell, click on the lower right corner of the A1 cell and pull down.
Note that cell A1 has changed. That's because the random numbers change when a cell on the page changes.
4. If you do not want this, just copy the random numbers and paste them in the form of values.
5. Select cell C1 and look at the formula bar. This cell currently holds a value, not the Rand function.
### Randbetween
The Randbetween function produces a random integer between the two values.
1. Select cell A1.
2. Enter `=Randbetween(50,75)` and press Enter.
3. If you want to create random decimals from 50 to 75, please revise the Rand function as follows:
```
=Rand()*75+50
```
### Randarray
If you are using excel 365, you can use the Randarray function.
1. By default, the Randarray function creates random decimal numbers from 0 to 1.
2. The Randarray function below creates an integer array, 10 rows x 1 column, from 20 to 80.
```
=Randarray(10,1,20,80,TRUE)
```
Note: Boolean True (the fifth parameter) of the Randarray function returns an integer array. Use False to return a decimal array from 20 to 80.
In addition, you can also see many other Excel tips here.
##### Tags: excel, create, random, numbers
Excel có hai chức năng rất hữu ích khi tạo các số ngẫu nhiên: Rand và Randbetween.
### rand
Hàm Rand tạo ra một số thập phân ngẫu nhiên từ 0 đến 1.
1. Chọn ô A1.
2. Loại `= rand ()` và nhấn enter.
Hàm Rand không có tham số.
3. Để tạo danh sách các số ngẫu nhiên, chọn ô A1, nhấp vào góc dưới bên phải của ô A1 và kéo xuống.
Lưu ý rằng ô A1 đã thay đổi.Đó là bởi vì các số ngẫu nhiên thay đổi khi một ô trên trang thay đổi.
4. Nếu bạn không muốn điều này, chỉ cần sao chép các số ngẫu nhiên và dán chúng dưới dạng giá trị.
5. Chọn ô C1 và nhìn vào thanh công thức.Tế bào này hiện giữ một giá trị, không phải chức năng RAND.
### randbetween
Hàm Randbet giữa tạo ra một số nguyên ngẫu nhiên giữa hai giá trị.
1. Chọn ô A1.
2. Nhập `= randbetween (50,75)` và nhấn Enter.
3. Nếu bạn muốn tạo số thập phân ngẫu nhiên từ 50 đến 75, vui lòng sửa đổi chức năng RAND như sau:
`` `
= Rand ()*75+50
`` `
### randarray
Nếu bạn đang sử dụng Excel 365, bạn có thể sử dụng chức năng Randarray.
1. Theo mặc định, hàm randarray tạo ra các số thập phân ngẫu nhiên từ 0 đến 1.
2. Hàm Randarray bên dưới tạo ra một mảng số nguyên, 10 hàng x 1 cột, từ 20 đến 80.
`` `
= Randarray (10,1,20,80, đúng)
`` `
Lưu ý: Boolean true (tham số thứ năm) của hàm randarray trả về một mảng số nguyên.Sử dụng sai để trả lại một mảng thập phân từ 20 đến 80.
Ngoài ra, bạn cũng có thể thấy nhiều mẹo Excel khác ở đây.
Tags ####
=======================================
## How to create random numbers in Excel
Excel has two very useful functions when creating random numbers: Rand and Randbetween.
### Rand
The Rand function produces a random decimal from 0 to 1.
1. Select cell A1.
2. Type `=Rand()` and press Enter.
The Rand function has no parameters.
3. To create a list of random numbers, select the A1 cell, click on the lower right corner of the A1 cell and pull down.
Note that cell A1 has changed. That's because the random numbers change when a cell on the page changes.
4. If you do not want this, just copy the random numbers and paste them in the form of values.
5. Select cell C1 and look at the formula bar. This cell currently holds a value, not the Rand function.
### Randbetween
The Randbetween function produces a random integer between the two values.
1. Select cell A1.
2. Enter `=Randbetween(50,75)` and press Enter.
3. If you want to create random decimals from 50 to 75, please revise the Rand function as follows:
```
=Rand()*75+50
```
### Randarray
If you are using excel 365, you can use the Randarray function.
1. By default, the Randarray function creates random decimal numbers from 0 to 1.
2. The Randarray function below creates an integer array, 10 rows x 1 column, from 20 to 80.
```
=Randarray(10,1,20,80,TRUE)
```
Note: Boolean True (the fifth parameter) of the Randarray function returns an integer array. Use False to return a decimal array from 20 to 80.
In addition, you can also see many other Excel tips here.
##### Tags: excel, create, random, numbers