Chat with us, powered by LiveChat You are the outgoing treasurer of your sorority and as your last task, you would like to create a membership template to enable future treasurers to track memberships, dues, and activitie | Wridemy

You are the outgoing treasurer of your sorority and as your last task, you would like to create a membership template to enable future treasurers to track memberships, dues, and activitie

Exp19_Excel_Ch12_ML1_Sorority_Dues

Exp19 Excel Ch12 ML1 Sorority Dues

Excel Chapter 12 Mid-Level 1 – Sorority Dues 

  

Project Description:

You are the outgoing treasurer of your sorority and as your last task, you would like to create a membership template to enable future treasurers to track memberships, dues, and activities. To reach your goal you will download and customize an Excel template. As part of the customization process, you will create a macro to format text, use VBA to protect the workbook, and inspect the workbook for issues.

     

Start Excel. Download and open   the file named Exp19_Excel_Ch12_ML1_HW_MembershipDues.xlsx.   Grader has automatically added your last name to the beginning of the   filename.

 

Click cell A1, delete the   template text, and type Membership Dues.

 

Delete Column L.

 

Select the range A1:L7 and clear   all data validation that was included in the template.

 

Add a comment in cell A1 that   says "Unprotect the   worksheet before editing.". Be sure to enter the comment as it appears, including the   period and excluding the quotation marks.

 

Use the Macro Recorder to record   a macro named Sort that sorts the records in ascending order based on selection   (Hint: use relative references when recording the macro).

 

Ensure the Developer Tab is   enabled, then create a Form Control Button named Sort spanning the cell range C1:D1 (ensure that the   button is inside the cell borders), and assign the Sort macro. Be sure the   label is displayed on the Form Control Button.

 

Use the VBA Editor to insert a   new module named Unprotect. To complete the step, type the code as it appears   below. Note there is one blank line after the opening declaration (sub   Unprotect). The remaining code does not have space between lines.
 

Sub   Unprotect()
 

‘Unprotect   Sheet
Worksheets("Member   List").Unprotect.Password = "eXploring"

 

Insert a new module named Protect. To complete the step, type the   code as it appears below. Note there is one blank line after the declaration   (Sub Protect). The remaining code does not have space between lines. Type the   following to complete the procedure.
 

Sub   Protect()
 

‘Protect   Sheet
Worksheets("Member   List").protect.Password= "eXploring"

 

Exit the VBA Editor and create a   Form Control Button named Unprotect spanning the cell B1. Assign the   UnprotectWorksheet macro. Be sure the label Unprotect appears on the Form control   button. Then save the file as a macro enabled workbook.

 

Create a Form Control Button   named Protect spanning the cell E1. Be sure   to display the label Protect on the Form Control Button and then assign the Protect macro.

 

Use the Document Inspector to   check the document for issues. Remove the Document Properties and Personal   Information and the Headers and Footers information. Do not remove Comments   and Macro information. Note: If using a Mac, please skip this step and   proceed to step 13.

 

Check the document for   Accessibility and compatibility with Excel 2010, 2013, and 2016.

 

Insert a new worksheet named Code.

 

Open the VBA Editor, open module   1, and copy the code. Paste the code in the Code worksheet starting in cell   A1. Then delete the rows that are blank (2,4,5, and 6).

 

Open the VBA Editor, open the   Protect module, and copy the code. Paste the code in the Code worksheet   starting in cell A17. Delete any additional blank rows that appear in the   code (row 18).

 

Open the VBA Editor, open the   Unprotect module, and copy the code. Paste the code in the Code worksheet   starting in cell A22. Then delete any additional blank rows that appear in   the code (row 23).

 

Save and close Exp19_Excel_Ch12_ML1_HW_MembershipDues.xlsx.   Be sure to save the workbook as a .xlsx   file, not a macro enabled workbook. Exit Excel. Submit the file as directed.

Exp19_Excel_Ch12_ML1_Sorority_Dues_Instructions.docx

Grader – Instructions Excel 2019 Project

Exp19_Excel_Ch12_ML1_Sorority_Dues

Project Description:

You are the outgoing treasurer of your sorority and as your last task, you would like to create a membership template to enable future treasurers to track memberships, dues, and activities. To reach your goal you will download and customize an Excel template. As part of the customization process, you will create a macro to format text, use VBA to protect the workbook, and inspect the workbook for issues.

Steps to Perform:

Step

Instructions

Points Possible

1

Start Excel. Download and open the file named Exp19_Excel_Ch12_ML1_HW_MembershipDues.xlsx. Grader has automatically added your last name to the beginning of the filename.

0

2

Click cell A1, delete the template text, and type Membership Dues.

2

3

Delete Column L.

0

4

Select the range A1:L7 and clear all data validation that was included in the template.

0

5

Add a comment in cell A1 that says " Unprotect the worksheet before editing.". Be sure to enter the comment as it appears, including the period and excluding the quotation marks.

12

6

Use the Macro Recorder to record a macro named Sort that sorts the records in ascending order based on selection (Hint: use relative references when recording the macro).

2

7

Ensure the Developer Tab is enabled, then create a Form Control Button named Sort spanning the cell range C1:D1 (ensure that the button is inside the cell borders), and assign the Sort macro. Be sure the label is displayed on the Form Control Button.

9

8

Use the VBA Editor to insert a new module named Unprotect. To complete the step, type the code as it appears below. Note there is one blank line after the opening declaration (sub Unprotect). The remaining code does not have space between lines. Sub Unprotect() ‘Unprotect Sheet Worksheets("Member List").Unprotect.Password = "eXploring"

0

9

Insert a new module named Protect. To complete the step, type the code as it appears below. Note there is one blank line after the declaration (Sub Protect). The remaining code does not have space between lines. Type the following to complete the procedure. Sub Protect() ‘Protect Sheet Worksheets("Member List").protect.Password= "eXploring"

0

10

Exit the VBA Editor and create a Form Control Button named Unprotect spanning the cell B1. Assign the UnprotectWorksheet macro. Be sure the label Unprotect appears on the Form control button. Then save the file as a macro enabled workbook.

9

11

Create a Form Control Button named Protect spanning the cell E1. Be sure to display the label Protect on the Form Control Button and then assign the Protect macro.

9

12

Use the Document Inspector to check the document for issues. Remove the Document Properties and Personal Information and the Headers and Footers information. Do not remove Comments and Macro information. Note: If using a Mac, please skip this step and proceed to step 13.

2

13

Check the document for Accessibility and compatibility with Excel 2010, 2013, and 2016.

0

14

Insert a new worksheet named Code.

10

15

Open the VBA Editor, open module 1, and copy the code. Paste the code in the Code worksheet starting in cell A1. Then delete the rows that are blank (2,4,5, and 6).

15

16

Open the VBA Editor, open the Protect module, and copy the code. Paste the code in the Code worksheet starting in cell A17. Delete any additional blank rows that appear in the code (row 18).

15

17

Open the VBA Editor, open the Unprotect module, and copy the code. Paste the code in the Code worksheet starting in cell A22. Then delete any additional blank rows that appear in the code (row 23).

15

18

Save and close Exp19_Excel_Ch12_ML1_HW_MembershipDues.xlsx. Be sure to save the workbook as a .xlsx file, not a macro enabled workbook. Exit Excel. Submit the file as directed.

0

Total Points

100

Created On: 03/26/2020 1 Exp19_Excel_Ch12_ML1 – Sorority Dues 1.3

Ahmed_EXP19_Excel_Ch12_ML1_HW_MembershipDues.xlsx

Member List

Club Name Member List
Member Name Position Dues Paid Member Since (Year) Volunteer Interests Phone Street Address City State ZIP Code Email Address Fax Notes

Exp19_Excel_Ch12_ML1_HW_Sorority Dues_Final.jpg

Our website has a team of professional writers who can help you write any of your homework. They will write your papers from scratch. We also have a team of editors just to make sure all papers are of HIGH QUALITY & PLAGIARISM FREE. To make an Order you only need to click Ask A Question and we will direct you to our Order Page at WriteDemy. Then fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.

Fill in all the assignment paper details that are required in the order form with the standard information being the page count, deadline, academic level and type of paper. It is advisable to have this information at hand so that you can quickly fill in the necessary information needed in the form for the essay writer to be immediately assigned to your writing project. Make payment for the custom essay order to enable us to assign a suitable writer to your order. Payments are made through Paypal on a secured billing page. Finally, sit back and relax.

Do you need an answer to this or any other questions?

About Wridemy

We are a professional paper writing website. If you have searched a question and bumped into our website just know you are in the right place to get help in your coursework. We offer HIGH QUALITY & PLAGIARISM FREE Papers.

How It Works

To make an Order you only need to click on “Order Now” and we will direct you to our Order Page. Fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.

Are there Discounts?

All new clients are eligible for 20% off in their first Order. Our payment method is safe and secure.

Hire a tutor today CLICK HERE to make your first order

Related Tags

Academic APA Writing College Course Discussion Management English Finance General Graduate History Information Justify Literature MLA