Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 57 Next »

Instructions

Section 6.1: Form Title and Placement

All forms should have a clear and meaningful title in Cell A1.

This form does not have a title. Students who use screen readers may struggle knowing what the content in the form is about. They may not know the worksheet is a form at all. Always include a title to give them a prompt or queue to know what they are supposed to see.

A form without a title.

This form has a title. Now the student will have an easier time figuring out what the form is about.

Example of an accessible form with a title and instructions on filling out the form.

Another thing to keep in mind is that all forms should be placed on separate spreadsheets.

This worksheet has two forms. The key to accessibility is to make this content easy to navigate and understand. The two forms make it very difficult to get around. Screen readers will also not recognize two forms next to each other, so it is best to leave them on separate pages.

A spreadsheet with two forms on one sheet.

This worksheet has only one form per page.

A spreadsheet with one form on each sheet.

Section 6.2: Form Design

When designing a form, you need to keep the following rules in mind.

Rule 1: Use Simple Designs for Forms that are not Overly Complicated

This form is made in a very complex format. This format and many others like it would confuse readers. Screen readers would also have a hard time conveying the information because three columns split into six. People with low vision would struggle to understand the categories and the different data in each one.

An inaccessible table for a restaurant complaint form in a complex format.

This form is made in a much simpler format and contains the same information.

A Restaurant Complaint form in a simple format with no extra header cells

Rule 2: You Should Include Instructions on How to Navigate and Complete the Form

A Restaurant Complaint form with instructions in Cell A1

Rule 3: Every Form Input Field must have a Label or Instructions Visible on the Screen. Input Cells Must Also be Next to the Cell Containing the Question or Description

A Restaurant Complaint form with input fields next to their labels cells.

Rule 4: Input Cells should be Shaded to make them more Visually Discernible using a Color other than Yellow

A Restaurant Complaint form with the input cells colored red, blue, and green.

Rule 5: Do Not Leave Any Cells Blank

A form with no blank cells. Every cell in the form has text inside.

Rule 6: Consider Adding Contact Information to the Form

A form with a link to an email address.

Section 6.3: Data Validation

Think of Data Validation as a way to assist people to filling out the form correctly. They act like post it notes or hints with little instructions. When using Data Validation, be sure to give a clear message and provide all relevant information.

To use Data Validation,

  1. Create your form and click in one of the fill in boxes.

    Military Registration form with the fill in cell for Date of Birth highlighted.
  2. Click the Data Tab, then choose Data Validation.

    Data Tab in Microsoft Excel.Data Validation Button in Microsoft Excel.
  3. In the Data Validation Box, choose Input Message. Then type in some instructions that will help the reader with the form. Click OK. Your end result should show a yellow square with your instructions inside it.

    The data validation box with the Input Message tab open. There is an input message inside saying to enter a birth date in a certain format. Only people between 18 and 30 can complete the form.Military Registration Form with the Date of Birth fill in section highlighted. There are instructions next to it in a yellow box.

Section 6.4: How to Provide Clear Error Alerts

Error Alerts are a great way to give people some guidance on whether they have filled out the form properly or not. To create an error alert,

  1. Choose a category you want an alert to appear for.

    Military Registration Form with the Date of Birth fill in section highlighted. There are instructions next to it in a yellow box.
  2. Go to the Data Tab, then click the Data Validation Button.

    Data Tab in Microsoft Excel.Data Validation Button with a green checkmark and red sign.
  3. In the Data Validation Settings Tab, change them to suit your needs. In Error Alert, type in a clear message on what has to be changed in the file in order to continue with the page.

    Data Validation box with settings tab open. Date restrictions are set between October 4th, 1994 and October 4th, 2006.Data Validation Box with Error Alert tab open with a message saying your date of birth is outside of our age limit.
  4. If the wrong information is typed into the box, your warning should appear.

Now we have an error for birthdates. If someone types in a date before or after our age limit or an inaccurate date, they will be alerted. Remember, if an input field is required, the user must be alerted.

Microsoft Excel warning saying that your date of birth is outside of our age limit.
  1. Finally, make sure that if you have fields that are required, you need to add an alert to the reader so they know how many input fields they need to fill.

This form does not have any hints or indications that all the fields need to be completed. Readers may get confused if they have to fill the whole form or not.

A military registration form with no indication that all fields need to be filled.

This form tells the reader that all fields must be filled to submit the form.

A military registration form with the text All fields are required in bold text.

Section 6.5: Form Controls and ActiveX Controls

While form controls like buttons, and check boxes are really cool to use, the are not ideal for accessibility. Most controls require users who can only use keyboard to go through a huge number of steps. Sometimes it can take a very long time for a person to check even one box. This must be changed. Instead of making check boxes and buttons, try creating a more accessible way for information to be submitted. One example is a dropdown menu. Another is to have the user type the information after being given a few choices.

This form has a bunch of check boxes to choose from. While this my look simple, it is actually very hard for people with disabilities to use them. It is especially hard for people who can only use keyboards as there are many steps needed to check the box.

A registration form with check boxes.

This dropdown menu is a more accessible approach that is much easier to use.

A form with a dropdown menu for Marital Status. Single is selected from the menu.

Another option is to type out the options then have the readers type in their answers.

Form for Marital Status has a number of choices. (Single, Married, Divorced, or Widowed)

One exception to the rule on using buttons is that you are allowed to make simple ones that run a macro. A good example is a Clear Form button. The Clear Form button will clear your form and is accessible for users using screen readers or only keyboards. To create your Clear Form button,

  1. Go to the Developer Tab.

    The Developer Tab in Microsoft Excel
  2. Click Insert, and in the Form Controls section, click the Form Control button.

    The Insert button with the Form Controls section open. The Form Control button is selected.
  3. Click and drag in cell B1 to create a button at a size you want.

    A large button is in Cell B1 called Button 1
  4. The Assign Macro box will appear, click Cancel.

    The Assign Macro box with the cancel button in the bottom right corner.
  5. Now double click your button and type “Clear Form.”

    The button's name has been changed from Button 1 to Clear Form.

Now that your button is made, we need to assign a macro and use some VBA code to make the button perform an action. To do this,

  1. Go to the Developer Tab and click Visual Basic.

    The Visual Basic Button in Microsoft Excel
  2. In the Visual Basic box, click Insert and choose Module.

    The Insert Tab in the Visual Basic box with Module highlighted.
  3. In the text box, type in the code for your button.

    An example of code to use for making a clear form button perform the action.
    1. In the code, it says “Are you sure you want to clear the form?” This is in the code because a person can read “Clear Form” and know what it is. But a screen reader will not be able to read the Clear Form button. Just that a button is present. This question will be read by the screen reader and will alert the reader.

    2. Be sure you made changes to the code if you need it. For example, changing the range to reach your whole form.

  4. When you click the button, the question will pop up. If you answer “Yes”, the form will be cleared. If you answer “No,” nothing will happen.

  5. Right click your button and click Assign Macro in the expansion menu.

    The button expansion with the Assign Macro option highlighted.
  6. In the pop-up box, click the Clear Form Macro and click OK.

    The Assign Macro box with a Macro called Clear Form.
  7. Go back to the Developers Tab and click on the Macros button.

    The Macros button in Microsoft Excel. It looks like a grey piece of paper with a red paper to the right.
  8. In the pop-up box, click the Options button and change the short cut to Control + Shift + C.

    The Macro box to the left with the Options button in the bottom right corner. The Macro Options box is to the right with a short cut key set at Control Shift capital C.
    1. Clicking those buttons in that order will allow students who only use keyboards to use the macros and clear the sheet.

  9. To fulfill accessibility requirements, add instructions to cell A1 on how to use the Clear Form button.

    A complete form with a Clear Form button and instructions on how to fill out the form and how to clear the form and restart.

Section 6.6: Locking and Protecting

Forms should always be locked and protected. This is done to protect users from changing information by mistake. To lock and protect your form,

  1. Highlight the input cells, right click, and select Format Cells.

    A restaurant complaint form.
  2. In the dialog box, click the Protection Tab and un-check the Locked Option. Click OK.

    Format Cells Dialog box with the Protection Tab open. The Locked option is unchecked.
  3. Go to the Review Tab of the ribbon. Select Protect Sheet.

    Review Tab in ExcelThe Protect Section in MS Excel. Protect Sheet is all the way to the left.
  4. In the Protection Sheet Dialog Box, make sure “Select Locked Cells” and “Select Unlocked Cells” are checked. Everything else can be unchecked. Click OK.

    Protect Sheet dialog box with select locked cells and select unlocked cells checked.
  5. Optional: You can create a password.

  6. Now with your spreadsheet saved, a user will only be able to make changes to the input fields. If they tried to make changes, an alert message will appear.

    A warning saying that the cell or chart is protected and that to make changes you may need to enter a password.

  • No labels