94
[1] The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real) that are randomly generated. No visual basic code is used so when you receive the graded worksheet back you don’t have to worry about viruses.

[1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

Embed Size (px)

Citation preview

Page 1: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[1]The following instructions will show you how to create an Excel

worksheet that allows students to take multiple choice tests (practice or real) that are randomly generated. No visual basic code is used so when you receive the graded worksheet back you don’t have to worry about viruses.

Page 2: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[2] Change the size of columns B through E to size 19.

23

4

R

1

6 (5) Type 19

Page 3: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[3] Change the width of column A to 3.

2

4

1

(3) Type 3

R

Page 4: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[4] Type this into Microsoft Excel.

(1) Type in text and numbers

Page 5: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[5]

We are going to set the calculation iteration to 1. We are doing this so we can add cells that reference themselves (circular reference). This will enable us to randomly shuffle questions and then freeze on the question we are presenting.

2

1

Page 6: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[6] Set Iteration to 1.

2

1

4

(3) Type 1

Page 7: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[7]Type this formula into Microsoft Excel. This formula will not change its value if the shuffle cell ($B$1) is false, but when true will randomly pick the number of one of the questions you have provided.

(1) Enter Formula

Page 8: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[8]The formula =IF($B$1=TRUE,INT(RAND()*COUNT(C2:Z2)+1),B2)

looks daunting but its not so bad when you break it down into the functions it contains. First the formula counts to see how many questions there is to choose from and then adds one “COUNT(C2:Z2)+1”. This value is multiplied by the random function “RAND()” which provides a random number between 0 and 1. The result of the multiplication is reduced to an integer value using “Int( )” thus selecting one of the questions you have provided.

To prevent the question from changing every time you change the worksheet we must find a way to freeze the result. We do this by changing calculation iteration to one (which we have already done) and then placing the question we are choosing In an IF statement “=IF(condition , true , false )”. The IF statement will change the result only if the value we set in cell B1 is true “$B$1=TRUE” otherwise it will use the result already contained in this cell “B2”.

Page 9: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[9]

Type this formula to do a horizontal lookup for a value “B2” in the top row of a table “C2:Z8” and when it finds a value that matches returns the value from the row you specify “2”. This places the selected question in cell B3.

(1) Enter Formula

Page 10: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[10] Type this formula to select the correct answer.

(1) Enter Formula

Page 11: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[11] Type this formula to select the first choice.

(1) Enter Formula

Page 12: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[12] Type this formula to select the second choice.

(1) Enter Formula

Page 13: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[13] Type this formula to select the third choice.

(1) Enter Formula

Page 14: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[14] Type this formula to select the fourth choice.

(1) Enter Formula

Page 15: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[15] Rename sheet1.

2

1

R

Page 16: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[16] Give sheet1 the name Questions.

(1) Type Name

Page 17: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[17] Prepare to format the questions.

2

3

4

1

Page 18: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[18]

Use autoformating Accounting 3.

23

1

5

6

4

Page 19: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[19] Switch to Sheet2.

1

Page 20: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[20] Rename sheet2.

2 3

1

Page 21: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[21] Change the name of Sheet2 to Test.

(1) Type Name

Page 22: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[22] Enter formula will display the name of the test stored in cell D1 on sheet Questions.

(1) Enter Formula

Page 23: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[23] Type this into Microsoft Excel.

(1) Type text

Page 24: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[24] Display the Control Toolbox.

2

3

1

Page 25: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[25] Add a text box.

32

1

Page 26: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[26] Rename Sheet3.

2

1

R

Page 27: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[27] Change the name of Sheet3 to Results.

(1) Type Name

Page 28: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[28] Type the formula that puts the name of the test on the Results worksheet and then switch to Text sheet.

2

(1) Type formula

Page 29: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[29] Bring up the properties of the text box.

2

31

Page 30: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[30] Define where the contents entered in this text box will be placed.

(1) Enter cell address

2

Page 31: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[31] Create a check box.

3 4

1

2

Page 32: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[32] Link the check box so it determines (TRUE or FALSE) if you want the questions to be shuffled.

3

(2) Type linked cell

(1) Type caption

Page 33: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[33] Type a formula that displays the first question.

1

(2) Type formula

Page 34: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[34] Create a drop down box the user will select there answer from.

3

4

1

2

Page 35: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[35] Change the properties of the dropdown box to list possible choices “List Fill Range” and where their choice will be stored “Linked Cell”.

4

1

(3) Type List Fill Range

(2) Type Linked Cell

Page 36: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[36] Test the check box and Drop down list.

3

4

12

Page 37: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[37] Switch to the Results sheet.

1

Page 38: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[38] Type this formula to display the first question.

(1) Type formula

Page 39: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[39] Type this formula to display the correct answer to the question.

(1) Type formula

Page 40: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[40] Type this into Microsoft Excel.

(1) Type text

Page 41: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[41] Type this formula to grade the first question.

(1) Type formula

Page 42: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[42] Type Result text.

(1) Type text

Page 43: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[43] Type this formula to total the results for the entire test.

(1) Type formula

Page 44: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[44] Change the format of the results cell.

2

1R

Page 45: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[45] Format the results cell to Percentage with no places after the decimal.

2

3

1

4

Page 46: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[46] Select column A to format all its cells.

2

1R

Page 47: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[47] Change column A to right justified.

2

3

1

4

Page 48: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[48] Switch to the text sheet.

1

Page 49: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[49] Add question numbers and switch to the Questions sheet.

(1) Type text

2

Page 50: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[50] Copy the text, formulas and formatting of question one to create question two.

2

3

1

(4) Press Control + V

Page 51: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[51] Attach the Control Toolbox to the side of the Excel window.

1

Page 52: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[52] Type this text into Microsoft Excel.

(1) Type text

Page 53: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[53] Define a name for the cell that contains question 2.

2

3 4

1

Page 54: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[54] Call the cell Question2.

(1) Type cell name

2

Page 55: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[55] Define a name for the cell that contains answer 2.

2

3 4

1

Page 56: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[56] Call the cell Answer2.

(1) Type cell name

2

Page 57: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[57] Define a name for the range of cells that contains the choices for question 2.

3

4

1

2

5

Page 58: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[58] Name the range of cells Choices2.

(1) Type cell name

2

Page 59: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[59] Switch to the Results sheet.

1

Page 60: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[60] Define a name for the cell that will contain the students result for question 2.

2

3 4

1

Page 61: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[61] Call the cell Result2.

(1) Type cell name

2

Page 62: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[62] Add question 2 to the Results worksheet.

(1) Type formula

Page 63: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[63] Add Answer 2 to the Results worksheet.

(1) Type formula

Page 64: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[64] Copy the formula that marks the question.

3

1

(3) Press Control+V

(2) Press Control+C

Page 65: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[65] Add question numbers and switch to the Test sheet.

(1) Type Text

2

Page 66: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[66] Add question 2 to the Test sheet..

(1) Type formula

Page 67: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[67] Create a drop down box.

312

4

Page 68: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[68]Change the properties of the dropdown box to list possible choices for question 2 “List Fill Range” and where the result for question 2 will be stored “Linked Cell”.

(3) Menu Bar

(2) Title bar

4

1

Page 69: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[69] Test the text box.

1

(2) Type text

Page 70: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[70] Select an answer for question 2.

1

2

Page 71: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[71] Switch to the Results sheet.

1

Page 72: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[72] Adjust the width of column B.

1

Page 73: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[73] Switch to the text sheet.

1

Page 74: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[74] Answer the first question.

2

1

Page 75: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[75] Answer the second question.

2

1

Page 76: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[76] Switch to the Results sheet.

1

Page 77: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[77] Hide the Results sheet. If you wanted students to check there score you could leave this sheet unhidden.

23

1

Page 78: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[78] Hide the Questions sheet.

2

34

1

Page 79: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[79] Format all the cells in the Test sheet.

31

2

Page 80: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[80] Make sure all the cells in the Test sheet are Locked.

2

3

1

Page 81: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[81] Protect the Test worksheet so it cannot be altered.

2 3

1

Page 82: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[82] Add a password to prevent tampering.

2

(1) Type Comp1813

(3) Type Comp1813

4

Page 83: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[83] Protect the entire workbook so the Questions and Results sheets cannot be unhidden.

23

1

Page 84: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[84] Add a password to prevent tampering.

2

(1) Type Comp1813

(3) Type Comp1813

4

Page 85: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[85] Sheet is protected.

(1) Type H

2

Page 86: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[86] You cannot unhide other sheets.

2

1

Page 87: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[87] Unprotect workbook.

23

1

(4) Type comp1813

5

Page 88: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[88] Unprotect the Test sheet.

2 3

1

(4) Type comp1813

5

Page 89: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[89] Unhide the questions sheet.

2

3

4

1

5

Page 90: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[90] Unhide the results sheet.

2

3

4

1

5

Page 91: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[91] Switch to Test sheet.

1

Page 92: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[92] Change the options of the Test sheet.

2

1

Page 93: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[93] Turn Gridlines off for the Test sheet.

2

3

1

Page 94: [1] Intro The following instructions will show you how to create an Excel worksheet that allows students to take multiple choice tests (practice or real)

[94] Test sheet no longer has those annoying gridlines.