Chat with us, powered by LiveChat Project Description: You have just started working in the ticket office for a local theater. The theater has five different employees who take ticket orders over the phone. Unti - Writingforyou

Project Description: You have just started working in the ticket office for a local theater. The theater has five different employees who take ticket orders over the phone. Unti

  

Project Description:

You have just started working in the ticket office for a local theater. The theater has five different employees who take ticket orders over the phone. Until now, they have been taking the orders on paper and then retyping the information on an invoice. Jill, one of the employees, started an Excel workbook to enter the ticket orders in, but the other employees kept making mistakes and deleting the formulas, so they ended up retyping the invoices anyway. You will help Jill modify her workbook so data validation makes data entry easier, macros help clear all the data except the formulas, and various types of workbook protection prevent formulas from being deleted by mistake.

Grader – Instructions Excel 2022 Project

YO22_Excel_Ch08_Assessment_Ticket

Project Description:

You have just started working in the ticket office for a local theater. The theater has five different employees who take ticket orders over the phone. Until now, they have been taking the orders on paper and then retyping the information on an invoice. Jill, one of the employees, started an Excel workbook to enter the ticket orders in, but the other employees kept making mistakes and deleting the formulas, so they ended up retyping the invoices anyway. You will help Jill modify her workbook so data validation makes data entry easier, macros help clear all the data except the formulas, and various types of workbook protection prevent formulas from being deleted by mistake.

Steps to Perform:

Step

Instructions

Points Possible

1

Start Excel. Open the downloaded Excel file named Excel_CH08_Assessment_Ticket.xlsx. Grader will automatically add you last name to the start of the filename. Save the file to the location where you are storing your files as a macro-enabled workbook. Enable content if necessary.

0

2

On the TicketOrder worksheet, use Trace Precedents to illustrate the formula error in cell B21. Correct the formula in cell B21 by entering the correct cells (the formula should multiply the Number of tickets by the Cost of Ticket). Using the formula created in cell B21, add an IFERROR formula to display a blank cell if there are no results.

1.4

3

Add data validation to cell B4 that allows only the current date. The =TODAY() function should be used. Enter the Input Message Title Date Enter the Message Enter today’s date. (type the period). Enter the Error Alert Title Error Enter the Error Message Date must be today’s date. (type the period). In cell B4, enter =TODAY().

2

4

Add data validation to cell B5 so that only a time between 9:00 AM and 4:00 PM can be entered. Enter the Input Message Enter the time in the HH:MM AM/PM format. (type the period). Enter the Error Message Time must be between 9:00 AM and 4:00 PM. (type the period). In cell B5, type 2:00 PM

1.8

5

Add data validation to cell B6 to look up a list of names from the Employees worksheet. Enter the Input Message Choose an employee name from the list. (type the period). In cell B6, select Ned.

1.8

6

Add a formula to cell B7 that creates an Invoice Number from the date, the time, and the ID number on the Employees worksheet for the employee listed in cell B6. The formula will include an IF function, the TEXT function, and a VLOOKUP function. The logical test is testing if cell B4 is greater than 0. If the result of the test is true, then TEXT(B4,"YYYYMMDD"),"")&" "&IF(B5>0,TEXT(B5,"HHMM"),"")&" "&IF(B6>0,VLOOKUP(B6,Employees!A2:B6,2) If the result of the test is false, then return a blank.

1.2

7

Add data validation to cell B18 so only a whole number between 1 and 25 can be entered in the cell. Enter the Input Message Enter a number between 1 and 25. (type the period). In cell B18, type 4.

1.2

8

Add data validation to cell B19 to look up a list of ticket locations from the TicketData worksheet. Enter the Input Message Select a location from the list. (type the period). In cell B19, select Balcony Front.

2

9

Insert a hyperlink in cell A17 on the TicketOrder worksheet that links to cell A8 of the TicketData worksheet. Add the ScreenTip Go to Ticket Data Insert a hyperlink in cell A8 on the TicketData worksheet that links to cell A17 of the TicketOrder worksheet. Add the ScreenTip Go to Ticket Order

2

10

If necessary, add the Developer tab to the ribbon. Create an absolute macro on the TicketOrder worksheet named ClearData with the capital letter D as the shortcut key that will clear the contents of all cells containing data entered by the user. This includes the cell ranges B4:B6, B10:B15, and B18:B19. Select all three ranges in the order given before clearing the contents. Make cell B4 the active cell after the macro is run. After creating the macro, click or press the Undo button to undo the change you made. Add a form control button and assign the ClearData macro to the button. Change the button caption to Clear Data. Test the button.

1.4

11

On the Developer tab, in the Code group, click or press Macros, and then select Edit. Copy the macro code and close the Microsoft Visual Basic for Applications window. Display the Macro worksheet and paste the copied macro code in cell A1 (there should be 11 lines altogether).

1.2

12

On the TicketOrder worksheet, unlock cells A17, B4:B6, B10:B15, and B18:B19.

1.6

13

From the Format Cells dialog box, hide all cells that have formulas: B7, B20, and B21.

1.2

14

Hide the horizontal and vertical scroll bars. Note, Mac users can skip hiding the scroll bars. Hide the row and column headers.

0

15

Hide the gridlines. Protect the worksheet.

1.2

16

Save the workbook as a macro-free workbook. Mark the workbook as final (Mac users, apply the Always Open Read-Only option).

0

17

Close the Excel_CH08_Assessment_Ticket.xlsx workbook. Exit Excel. Submit your file as directed.

0

Total Points

20

Created On: 07/24/2023 1 YO22_Excel_CH08_Assessment – Ticket 1.1

,

TicketOrder

Ticket Order Form
Invoice Information
Invoice Date
Invoice Time
Taken By
Invoice Number
Customer Information
Customer Name
Address
City
State
Zip
Phone
Ticket Information
Number of tickets
Ticket Location
Cost of Ticket
Total Invoice Amount ERROR:#VALUE!

&F

TicketData

Ticket Location
Balcony Back $ 15.00
Floor Back $ 20.00
Balcony Front $ 25.00
Floor Middle $ 30.00
Floor Front $ 35.00
Back to TicketOrder

&F

Employees

Employees
Jill 452
Leslie 652
Mark 854
Ned 659
Phillip 554

&F

Macro