Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 349
Default Shutting off all calculations

I'm a teacher and want to create a worksheet form where students can enter
answers to (their handwritten) math problems.

For the student's version of the answer spreadsheet, I want all Excel
functions shut off, so that students cannot use Excel to calculate their
answers. All my students have PCs they can bring into class so that they
could get their versions of the file off a shared server.

I could then speed up grading hundreds of questions by having my own version
of the spreadsheet with True/False getting pasted back alongside each
student's answers in each of their versions, for their feedback.

The Calculation Options tab under Formulas in Office 2007 Excel does not
seem to give the option of shutting everything off. All I want them to have
is data entry capability.

Thanks!
- Peter
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default Shutting off all calculations

Peter,

Select all the cells and format them as text, choose the protection tab and unlock all the cells,
then use protection, and lock the sheet. Make sure that you disallow formatting changes. That will
prevent the sheet from being reformatted and used for calcs, and will only allow the students to
enter text into the cells.

You may also want to use event code to prevent the students from opening and using another workbook.
Post back for some help with that if you are interested.

HTH,
Bernie
MS Excel MVP


"Peter" wrote in message
...
I'm a teacher and want to create a worksheet form where students can enter
answers to (their handwritten) math problems.

For the student's version of the answer spreadsheet, I want all Excel
functions shut off, so that students cannot use Excel to calculate their
answers. All my students have PCs they can bring into class so that they
could get their versions of the file off a shared server.

I could then speed up grading hundreds of questions by having my own version
of the spreadsheet with True/False getting pasted back alongside each
student's answers in each of their versions, for their feedback.

The Calculation Options tab under Formulas in Office 2007 Excel does not
seem to give the option of shutting everything off. All I want them to have
is data entry capability.

Thanks!
- Peter



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,836
Default Shutting off all calculations

You will need VBA:
http://www.decisionmodels.com/calcsecretsh.htm

Something like this should work:
Private Sub Workbook_Open()
Application.Calculation = xlCalculationManual
End Sub


HTH,
Ryan---
--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Peter" wrote:

I'm a teacher and want to create a worksheet form where students can enter
answers to (their handwritten) math problems.

For the student's version of the answer spreadsheet, I want all Excel
functions shut off, so that students cannot use Excel to calculate their
answers. All my students have PCs they can bring into class so that they
could get their versions of the file off a shared server.

I could then speed up grading hundreds of questions by having my own version
of the spreadsheet with True/False getting pasted back alongside each
student's answers in each of their versions, for their feedback.

The Calculation Options tab under Formulas in Office 2007 Excel does not
seem to give the option of shutting everything off. All I want them to have
is data entry capability.

Thanks!
- Peter

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default Shutting off all calculations

Ryan,

Excel in manual calculation mode will still evaluate a formula when it is entered.

HTH,
Bernie
MS Excel MVP


You will need VBA:
http://www.decisionmodels.com/calcsecretsh.htm

Something like this should work:
Private Sub Workbook_Open()
Application.Calculation = xlCalculationManual
End Sub



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 349
Default Shutting off all calculations

THANKS so much--I will try it out tonight...bell is about to ring for the
next class!

"ryguy7272" wrote:

You will need VBA:
http://www.decisionmodels.com/calcsecretsh.htm

Something like this should work:
Private Sub Workbook_Open()
Application.Calculation = xlCalculationManual
End Sub


HTH,
Ryan---
--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Peter" wrote:

I'm a teacher and want to create a worksheet form where students can enter
answers to (their handwritten) math problems.

For the student's version of the answer spreadsheet, I want all Excel
functions shut off, so that students cannot use Excel to calculate their
answers. All my students have PCs they can bring into class so that they
could get their versions of the file off a shared server.

I could then speed up grading hundreds of questions by having my own version
of the spreadsheet with True/False getting pasted back alongside each
student's answers in each of their versions, for their feedback.

The Calculation Options tab under Formulas in Office 2007 Excel does not
seem to give the option of shutting everything off. All I want them to have
is data entry capability.

Thanks!
- Peter



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 349
Default Shutting off all calculations

I opened Developer and pasted it in under VBA but it does not do
anything....I am ignorant as to how to get subroutines to run....

"ryguy7272" wrote:

You will need VBA:
http://www.decisionmodels.com/calcsecretsh.htm

Something like this should work:
Private Sub Workbook_Open()
Application.Calculation = xlCalculationManual
End Sub


HTH,
Ryan---
--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Peter" wrote:

I'm a teacher and want to create a worksheet form where students can enter
answers to (their handwritten) math problems.

For the student's version of the answer spreadsheet, I want all Excel
functions shut off, so that students cannot use Excel to calculate their
answers. All my students have PCs they can bring into class so that they
could get their versions of the file off a shared server.

I could then speed up grading hundreds of questions by having my own version
of the spreadsheet with True/False getting pasted back alongside each
student's answers in each of their versions, for their feedback.

The Calculation Options tab under Formulas in Office 2007 Excel does not
seem to give the option of shutting everything off. All I want them to have
is data entry capability.

Thanks!
- Peter

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default Shutting off all calculations

Peter,

In your case, the event code will not help, so it does not matter. Format
the cells as text, unlock them, and protect the sheet.

Bernie

"Peter" wrote in message
...
I opened Developer and pasted it in under VBA but it does not do
anything....I am ignorant as to how to get subroutines to run....

"ryguy7272" wrote:

You will need VBA:
http://www.decisionmodels.com/calcsecretsh.htm

Something like this should work:
Private Sub Workbook_Open()
Application.Calculation = xlCalculationManual
End Sub


HTH,
Ryan---
--
Ryan---
If this information was helpful, please indicate this by clicking
''Yes''.


"Peter" wrote:

I'm a teacher and want to create a worksheet form where students can
enter
answers to (their handwritten) math problems.

For the student's version of the answer spreadsheet, I want all Excel
functions shut off, so that students cannot use Excel to calculate
their
answers. All my students have PCs they can bring into class so that
they
could get their versions of the file off a shared server.

I could then speed up grading hundreds of questions by having my own
version
of the spreadsheet with True/False getting pasted back alongside each
student's answers in each of their versions, for their feedback.

The Calculation Options tab under Formulas in Office 2007 Excel does
not
seem to give the option of shutting everything off. All I want them to
have
is data entry capability.

Thanks!
- Peter


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,836
Default Shutting off all calculations

Hit Alt+F11, double-click 'ThisWorkbook' and paste into the window that
opens. Save, Close, Open. Should have mentioned it before.

To turn "off":
Application.Calculation = xlCalculationManual

To turn "on":
Application.Calculation = xlCalculationAutomatic

HTH,
Ryan---

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Peter" wrote:

I opened Developer and pasted it in under VBA but it does not do
anything....I am ignorant as to how to get subroutines to run....

"ryguy7272" wrote:

You will need VBA:
http://www.decisionmodels.com/calcsecretsh.htm

Something like this should work:
Private Sub Workbook_Open()
Application.Calculation = xlCalculationManual
End Sub


HTH,
Ryan---
--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Peter" wrote:

I'm a teacher and want to create a worksheet form where students can enter
answers to (their handwritten) math problems.

For the student's version of the answer spreadsheet, I want all Excel
functions shut off, so that students cannot use Excel to calculate their
answers. All my students have PCs they can bring into class so that they
could get their versions of the file off a shared server.

I could then speed up grading hundreds of questions by having my own version
of the spreadsheet with True/False getting pasted back alongside each
student's answers in each of their versions, for their feedback.

The Calculation Options tab under Formulas in Office 2007 Excel does not
seem to give the option of shutting everything off. All I want them to have
is data entry capability.

Thanks!
- Peter

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
Excel shutting down - not wanted! Linda Broyles Excel Discussion (Misc queries) 5 August 8th 08 05:07 PM
if calculations TeddyBearDJ Excel Worksheet Functions 2 March 19th 06 10:27 PM
HOW CAN I STOP MACRO FROM SHUTTING OFF NUMERIC LOCK? MACRO SHUTTING OFF NUMERIC LOCK Excel Discussion (Misc queries) 2 December 4th 05 10:20 AM
When shutting down my computer, message says Excel can't close. Chicago Excel Discussion (Misc queries) 3 November 22nd 05 09:24 PM
Excel is not shutting down properly Gayle Ashton Excel Discussion (Misc queries) 1 December 3rd 04 12:47 AM


All times are GMT +1. The time now is 11:01 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"