Hello,
I'm trying to find a formula (Or VBA, but i have close to zero experience on that) that retrieves me a series of random samples based on a weighted criteria.
Let's say i have the following Table
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Jon[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]Mike[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]Jon[/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]Jon[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]Jon[/TD]
[TD]5[/TD]
[/TR]
[TR]
[TD]Mike[/TD]
[TD]6[/TD]
[/TR]
[TR]
[TD]Mike[/TD]
[TD]7[/TD]
[/TR]
[TR]
[TD]Zero[/TD]
[TD]8[/TD]
[/TR]
[TR]
[TD]Zero[/TD]
[TD]9[/TD]
[/TR]
[TR]
[TD]Jon[/TD]
[TD]10[/TD]
[/TR]
</tbody>[/TABLE]
So i have 5 ocurrence of Jon, 3 for Mike and 2 for Zero. This is my Universe.
I want to get a result which is a list of random selected Samples of 3 Jons, 2 Mikes and 1 Zero selected Randomly.
this is just an Example My list has 6k entries and i need a sample of 200 with different weights according to the entries.
Is this possible?
I'm trying to find a formula (Or VBA, but i have close to zero experience on that) that retrieves me a series of random samples based on a weighted criteria.
Let's say i have the following Table
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Jon[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]Mike[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]Jon[/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]Jon[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]Jon[/TD]
[TD]5[/TD]
[/TR]
[TR]
[TD]Mike[/TD]
[TD]6[/TD]
[/TR]
[TR]
[TD]Mike[/TD]
[TD]7[/TD]
[/TR]
[TR]
[TD]Zero[/TD]
[TD]8[/TD]
[/TR]
[TR]
[TD]Zero[/TD]
[TD]9[/TD]
[/TR]
[TR]
[TD]Jon[/TD]
[TD]10[/TD]
[/TR]
</tbody>[/TABLE]
So i have 5 ocurrence of Jon, 3 for Mike and 2 for Zero. This is my Universe.
I want to get a result which is a list of random selected Samples of 3 Jons, 2 Mikes and 1 Zero selected Randomly.
this is just an Example My list has 6k entries and i need a sample of 200 with different weights according to the entries.
Is this possible?