Random change of numbers in a single cell

Vicky6615

Spammer
Joined
Jan 31, 2006
Messages
37
Hello Board !

I have stuck in a situation where i have 2 sheet. In 1st sheet i have stored a number from 1 - 1000 at column A i.e. (A1 : A1000).

Now what i want is to display a range of numbers in a single cell from sheet 1 to sheet 2 Randomly and vice a versa.

For Example :

In Cell A1 of Sheet 2 in want to display a number range from (11 - 60) of sheet 1 ,

In Cell B2 of sheet 2 in want to display a number range from (751 - 1000) of sheet 1.

Kindly help to fetch the solution

Thanking You,
Vikash
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
In Cell A1 of Sheet 2 in want to display a number range from (11 - 60) of sheet 1 ,

In Cell B2 of sheet 2 in want to display a number range from (751 - 1000) of sheet 1.

Don't understand what you want...
 
Upvote 0
Is there a particular reason you need to select these from sheet1? You can use:
Code:
=INT(RAND()*49)+12
For a random number between 11 and 60 and
Code:
=INT(RAND()*250)+751
For a random number between 751 and 1000.
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,377
Members
448,955
Latest member
BatCoder

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