Interactive file examples
Student Modifications list– LEP and SpecEd
Who Is It? Ice Breaker (used in Girl’s Club)
Creating an interactive file for multiplication using the formulas above
1. Open New Excel file2. Type the numbers into cells B2, D23. Type character for multiplication ( * ) into cell C24. Draw a box around F2, put a space “ “ into cell F25. Type formula +I2 into cell G26. Type the If statement for multiplication (see below) into cell I27. Hide column I
Click on FormatColumnHide8. Protect your file so that students cannot look at the formula or answersa. Highlight the cells where students should not type or modifyClick on FormatCellsProtection (Tab)√ Lockedb. Highlight the cells where students will type their answer
Click on FormatCellsProtection (Tab)Uncheck √ Lockedc. Click on Tools
ProtectionProtect sheet or Protect workbook√ Select locked cells √ Select unlocked cells
9. Note: Password is optional10. Save file as usual
Addition
=IF (F2= (B2+D2), “Good Job!”, IF (F2= “ ”, “Enter Answer”, “Sorry, try again” ))
Subtraction
=IF(F2=(B2-D2), “Good Job!”, IF (F2= “ ”, “Enter Answer”, “Sorry, try again” ))
Multiplication
=IF(F2=(B2*D2), “Good Job!”, IF (F2= “ ”, “Enter Answer”, “Sorry, try again” ))Example:
Division
=IF(F2=(B2/D2), “Good Job!”, IF (F2= “ ”, “Enter Answer”, “Sorry, try again” ))
IF F2(answer) = B2(value) + D2(value) write Good Job!Else IF F2= “ ” (press space bar in cell F2) write Enter AnswerElse write Sorry, try againIf statements are based on comparing values.
The values can be numeric or text
Any message can be place inside the “text message”
The key is to make sure you select the correct cell for your formula
Formulas are a way to use a cell reference instead of a fixed number
Example: Times_table_form.xlt