Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default random ordering a list in excel

Hi, everyone

I am now facing a problem of random ordering a list of sentences in
excel, I will be appreciate if anyone here can help me out.

The context is as this:

I have a list of sentences, from 1 to 200, each two of them are in
pair, thus, the 1st sentence belongs to class 1 and 2nd sentence
belongs to class 2, the 3rd sentence belongs to class 1, and the 4th
sentence belongs to class 2 and so on....(sentences with an odd
numbering belongs to class 1 and sentences with an even numbering
belongs to class 2).

My problem is that, I need to ask some people to classify these
sentences, but I do not want them to find out that, after several
pairs, they know already that the first sentence in the pair belongs
to class 1 and the second one belongs to class 2. Thus I need to
randomize the order of the sentences in the pair, say, in some pairs,
the order of the two sentences is reversed, and the pairs are randomly
choose. (So the people will not find out any rules)

After the person has done, I need to order the sentence into the
original ordering, together with the classification from the person,
thus I can know what will be the answer from the person.

I would be appreciate if anyone can tell me how to realize this? What
kind of functions should I use and how?

Many thanks in advance and hope to hear from you all......
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default random ordering a list in excel

Use a helper column with the formula =INT((ROW()+1)/2)+RAND() (assuming that
the first entry is in row 1) and sort both columns by the helper column.
Remember to save the original version beforehand, so that you can go back
if you need to.
--
David Biddulph


"zhen" wrote in message
...
Hi, everyone

I am now facing a problem of random ordering a list of sentences in
excel, I will be appreciate if anyone here can help me out.

The context is as this:

I have a list of sentences, from 1 to 200, each two of them are in
pair, thus, the 1st sentence belongs to class 1 and 2nd sentence
belongs to class 2, the 3rd sentence belongs to class 1, and the 4th
sentence belongs to class 2 and so on....(sentences with an odd
numbering belongs to class 1 and sentences with an even numbering
belongs to class 2).

My problem is that, I need to ask some people to classify these
sentences, but I do not want them to find out that, after several
pairs, they know already that the first sentence in the pair belongs
to class 1 and the second one belongs to class 2. Thus I need to
randomize the order of the sentences in the pair, say, in some pairs,
the order of the two sentences is reversed, and the pairs are randomly
choose. (So the people will not find out any rules)

After the person has done, I need to order the sentence into the
original ordering, together with the classification from the person,
thus I can know what will be the answer from the person.

I would be appreciate if anyone can tell me how to realize this? What
kind of functions should I use and how?

Many thanks in advance and hope to hear from you all......



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default random ordering a list in excel

Further to David's suggestion, before you sort use another helper
column filled with a simple sequence 1, 2, 3, 4 etc and include this
in your sort range on the random column. This will enable you to sort
the sentences back into the original order when you are done.

Hope this helps.

Pete

On Jan 28, 11:46*am, "David Biddulph" <groups [at] biddulph.org.uk
wrote:
Use a helper column with the formula =INT((ROW()+1)/2)+RAND() (assuming that
the first entry is in row 1) and sort both columns by the helper column.
Remember to save the original version *beforehand, so that you can go back
if you need to.
--
David Biddulph

"zhen" wrote in message

...



Hi, everyone


I am now facing a problem of random ordering a list of sentences in
excel, I will be appreciate if anyone here can help me out.


The context is as this:


I have a list of sentences, from 1 to 200, each two of them are in
pair, thus, the 1st sentence belongs to class 1 and 2nd sentence
belongs to class 2, the 3rd sentence belongs to class 1, and the 4th
sentence belongs to class 2 and so on....(sentences with an odd
numbering belongs to class 1 and sentences with an even numbering
belongs to class 2).


My problem is that, I need to ask some people to classify these
sentences, but I do not want them to find out that, after several
pairs, they know already that the first sentence in the pair belongs
to class 1 and the second one belongs to class 2. Thus I need to
randomize the order of the sentences in the pair, say, in some pairs,
the order of the two sentences is reversed, and the pairs are randomly
choose. (So the people will not find out any rules)


After the person has done, I need to order the sentence into the
original ordering, together with the classification from the person,
thus I can know what will be the answer from the person.


I would be appreciate if anyone can tell me how to realize this? What
kind of functions should I use and how?


Many thanks in advance and hope to hear from you all......- Hide quoted text -


- Show quoted text -


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default random ordering a list in excel

But you'd probably want to hide that column, or else it might give your
victims a clue as to the answer. :-)
--
David Biddulph

"Pete_UK" wrote in message
...
Further to David's suggestion, before you sort use another helper
column filled with a simple sequence 1, 2, 3, 4 etc and include this
in your sort range on the random column. This will enable you to sort
the sentences back into the original order when you are done.

Hope this helps.

Pete

On Jan 28, 11:46 am, "David Biddulph" <groups [at] biddulph.org.uk
wrote:
Use a helper column with the formula =INT((ROW()+1)/2)+RAND() (assuming
that
the first entry is in row 1) and sort both columns by the helper column.
Remember to save the original version beforehand, so that you can go back
if you need to.
--
David Biddulph

"zhen" wrote in message

...



Hi, everyone


I am now facing a problem of random ordering a list of sentences in
excel, I will be appreciate if anyone here can help me out.


The context is as this:


I have a list of sentences, from 1 to 200, each two of them are in
pair, thus, the 1st sentence belongs to class 1 and 2nd sentence
belongs to class 2, the 3rd sentence belongs to class 1, and the 4th
sentence belongs to class 2 and so on....(sentences with an odd
numbering belongs to class 1 and sentences with an even numbering
belongs to class 2).


My problem is that, I need to ask some people to classify these
sentences, but I do not want them to find out that, after several
pairs, they know already that the first sentence in the pair belongs
to class 1 and the second one belongs to class 2. Thus I need to
randomize the order of the sentences in the pair, say, in some pairs,
the order of the two sentences is reversed, and the pairs are randomly
choose. (So the people will not find out any rules)


After the person has done, I need to order the sentence into the
original ordering, together with the classification from the person,
thus I can know what will be the answer from the person.


I would be appreciate if anyone can tell me how to realize this? What
kind of functions should I use and how?


Many thanks in advance and hope to hear from you all......- Hide quoted
text -


- Show quoted text -



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default random ordering a list in excel

On 28 jan, 11:42, zhen wrote:
Hi, everyone

I am now facing a problem of random ordering a list of sentences in
excel, I will be appreciate if anyone here can help me out.

The context is as this:

I have a list of sentences, from 1 to 200, each two of them are in
pair, thus, the 1st sentence belongs to class 1 and 2nd sentence
belongs to class 2, the 3rd sentence belongs to class 1, and the 4th
sentence belongs to class 2 and so on....(sentences with an odd
numbering belongs to class 1 and sentences with an even numbering
belongs to class 2).

My problem is that, I need to ask some people to classify these
sentences, but I do not want them to find out that, after several
pairs, they know already that the first sentence in the pair belongs
to class 1 and the second one belongs to class 2. Thus I need to
randomize the order of the sentences in the pair, say, in some pairs,
the order of the two sentences is reversed, and the pairs are randomly
choose. (So the people will not find out any rules)

After the person has done, I need to order the sentence into the
original ordering, together with the classification from the person,
thus I can know what will be the answer from the person.

I would be appreciate if anyone can tell me how to realize this? What
kind of functions should I use and how?

Many thanks in advance and hope to hear from you all......


Thank you guys, really helpful!
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I make random selection from excel list? DD Excel Discussion (Misc queries) 2 October 9th 06 09:38 PM
list names in random order in Excel 2002 John Murf Excel Discussion (Misc queries) 2 February 25th 06 01:58 AM
re-ordering the list on a filter drop down Kylor Excel Discussion (Misc queries) 3 December 19th 05 06:59 PM
How do I pull a random sample of people from a list in excel? PM Excel Worksheet Functions 6 November 29th 05 04:41 AM
How do I find random number in list of random alpha? (Position is. jlahealth-partners Excel Discussion (Misc queries) 0 February 8th 05 05:31 PM


All times are GMT +1. The time now is 03:17 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"