Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
need 2 tests same questions but the second test in reverse order of the first
|
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Do it manually.
-- JoAnn Paules MVP Microsoft [Publisher] "Dave R." wrote in message ... need 2 tests same questions but the second test in reverse order of the first |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Or buy my utility which randomises questions for any number of exams :-)
On 25/8/06 11:13 AM, in article , "Dave R." wrote: need 2 tests same questions but the second test in reverse order of the first -- Please reply to the newsgroup to maintain the thread. Please do not email me unless I ask you to. John McGhie Microsoft MVP, Word and Word for Macintosh. Consultant Technical Writer Sydney, Australia +61 (0) 4 1209 1410 |
#4
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Here is a macro that will put the questions into a different random order
for each student: Dim i As Integer, j As Integer, k As Integer, Source As Document, Target As Document, students As Integer Dim Message, Title, question As Range Message = "Enter number of students" ' Set prompt. Title = "Randomizer" ' Set title. ' Display message, title students = InputBox(Message, Title) For k = 1 To students Set Source = Documents.Open("E:\Worddocs\source1.doc") Set Target = Documents.Add For i = 100 To 0 Step -1 j = Int((i * Rnd) + 1) Set question = Source.Paragraphs(j).Range Target.Range.InsertAfter question question.Delete Next i ' Print and Close Document with random list of questions Target.PrintOut ' Target.SaveAs ("E:\worddocs\student" & k & ".doc") Target.Close SaveChanges:=wdDoNotSaveChanges Source.Close SaveChanges:=wdDoNotSaveChanges Next k -- Hope this helps. Please reply to the newsgroup unless you wish to avail yourself of my services on a paid consulting basis. Doug Robbins - Word MVP "Dave R." wrote in message ... need 2 tests same questions but the second test in reverse order of the first |
#5
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]() |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to print two pages in a sheet and change each page order | Page Layout | |||
Reverse order of text | Page Layout | |||
I want to change the tab order in a word form I created. | Microsoft Word Help | |||
How do I change the order of the FILLIN field prompts? | Page Layout | |||
How do you change order of pages in word? | Microsoft Word Help |