Is it possible to Index a single cell array?

JonDalton

New Member
Joined
Nov 12, 2018
Messages
9
I was trying to randomly select items from an array, I don't think the below is possible so I'm going to break it out into cells.

I have an array in A1, everything below is submitted with ctrl shift enter just in case.

A1={"test1","test2","test3"}

I want to be able to:
=INDEX(A1,RANDBETWEEN(1,3))

Results from =INDEX,A1,RANDBETWEEN(Row,Column))

[TABLE="width: 500"]
<tbody>[TR]
[TD]Row[/TD]
[TD]Column[/TD]
[TD]Result[/TD]
[/TR]
[TR]
[TD]0[/TD]
[TD]0[/TD]
[TD][TABLE="width: 98"]
<tbody>[TR]
[TD="width: 98"]test1[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD]0[/TD]
[TD]1[/TD]
[TD][TABLE="width: 98"]
<tbody>[TR]
[TD="width: 98"]test1[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD]0[/TD]
[TD]2[/TD]
[TD][TABLE="width: 98"]
<tbody>[TR]
[TD="width: 98, align: center"]#REF![/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]0[/TD]
[TD][TABLE="width: 98"]
<tbody>[TR]
[TD="width: 98"]test1[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]1[/TD]
[TD][TABLE="width: 98"]
<tbody>[TR]
[TD="width: 98"]test1[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]2[/TD]
[TD][TABLE="width: 98"]
<tbody>[TR]
[TD="width: 98, align: center"]#REF![/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]0[/TD]
[TD][TABLE="width: 98"]
<tbody>[TR]
[TD="width: 98, align: center"]#REF![/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]1[/TD]
[TD][TABLE="width: 98"]
<tbody>[TR]
[TD="width: 98, align: center"]#REF![/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]2[/TD]
[TD][TABLE="width: 98"]
<tbody>[TR]
[TD="width: 98, align: center"]#REF![/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]0[/TD]
[TD][TABLE="width: 98"]
<tbody>[TR]
[TD="width: 98, align: center"]#REF![/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]1[/TD]
[TD][TABLE="width: 98"]
<tbody>[TR]
[TD="width: 98, align: center"]#REF![/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]2[/TD]
[TD][TABLE="width: 98"]
<tbody>[TR]
[TD="width: 98, align: center"]#REF![/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
</tbody>[/TABLE]

Is this possible with a different function?
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
No, you can't do that. You could put the array into a defined name instead.
 
Upvote 0

Forum statistics

Threads
1,225,738
Messages
6,186,736
Members
453,369
Latest member
juliewar

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