I am trying to randomly select a set of values from another column without duplicates. The formula I am using below works for randomly selecting values from the table in Column A, but it often returns duplicate values. Is there any way to use this without doing the whole extra "helper" =RAND() column route?
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Location
[/TD]
[TD][/TD]
[TD]Random Location Lookup
[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]AS104[/TD]
[TD][/TD]
[TD]=INDEX(Table1[Locn],RANDBETWEEN(1,COUNTA(Table1[Locn])),1)[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]AS113[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]CR215[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]DP102[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Location
[/TD]
[TD][/TD]
[TD]Random Location Lookup
[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]AS104[/TD]
[TD][/TD]
[TD]=INDEX(Table1[Locn],RANDBETWEEN(1,COUNTA(Table1[Locn])),1)[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]AS113[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]CR215[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]DP102[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]