Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You have just been hired by Olympus Tours (OT), a bus rental company located in Orem, Utah. OT provides buses for groups such as schools,

You have just been hired by Olympus Tours (OT), a bus rental company located in Orem, Utah. OT provides buses for groups such as schools, family reunions, and travel clubs. The smallest group OT will bus is 20 people and the largest group is 120 people. Two types of buses are available for use: small buses (25 maximum riders per bus) and large buses (60 maximum riders per bus). Assume that OT has access to all of the small and large buses it needs. Table 1. Bus Combinations # of Buses Option Riders Small Big 1 Min 20 1 0 Max 25 2 Min 26 2 0 Max 50 3 Min 51 0 1 Max 60 4 Min 61 1 1 Max 85 5 Min 86 0 2 Max 120 OTs pricing structure is as follows. The base price (BP) is calculated by multiplying the number of people (P) included in the trip by a per-person base rate (PPBR). BP = P * PPBR The base price covers trips up to and including five hours in duration. Customers are charged extra for tours that last longer than 5 hours. For example, a bus rented for 6.5 hours would have 1.5 overtime hours (OH). The maximum number of overtime hours per day is four, which means any trip lasting nine hours or more has the same number of overtime hours regardless of the duration of time that exceeds 9 hours. The overtime charge (OC) is calculated by multiplying the base price (BP) by the overtime hours (OH) multiplied by the extra hourly percentage (EHP) as follows: OC = BP * OH * EHP Table 2 shows some example price calculations that include partial hours. Table 2 Example Pricing Calculations Number of People Per-Person Base Rate Base Price Hours Overtime Hours Extra Hourly Percent Overtime Charge Total Price P PPBR* BP H OH EHP* OC TP 20 $10 $200 5.4 0.4 25% $20 $220 25 $12 $300 6.6 1.6 25% $120 $420 30 $8 $240 11.3 4.0 25% $240 $480 35 $7 $245 5.4 0.4 30% $29 $274 45 $15 $675 6.6 1.6 30% $324 $999 50 $5 $250 11.3 4.0 30% $300 $550 Note: *These numbers are not calculated in your code. Your sub should simply take whatever value for PPBR and EHP that is given in the setup portion of the single estimate and use that in your calculations. These are just example values you can use to test your outputs afterward. Your task is to create both (1) a flowchart and (2) a VBA program in Excel that will pick the right number of buses and that will calculate the correct price for the number of people and hours specified. Because the pricing parameters (PPBR and EHP) are somewhat stable, they are stored in the setup section. When the program runs (both the single and the batch), it should obtain the values for PPBR and EHP from the Setup section. The value of PPBR and EHP should be whatever the value of cells C22, and C23 are at the time it runs (this can be any values you choose). Do not hard-code these values in your code. Based on the values in the setup section and the number of people and hours specified, your program should calculate the correct outcomes. Your program should work correctly for single-trip estimates and for a batch of estimates. Your program should only pull values from the worksheet. You should not be using input boxes. Single-Trip Estimates. The program should work when the user wants to estimate one trip at a time. For a single trip, the user enters inputs directly into the [User Form] tab and presses the Run Single button. In this scenario, the user will enter the number of people (P) and the tour duration in hours (H) into the appropriate cells in the User Form. Your program should then use the pricing parameters (PPBR and EHP) to calculate the amount the customer will be charged per day. Note: if the user requests fewer than 20 or greater than 120 passengers, the user should see a pop-up message that indicates that theyve selected too few or too many passengers and then end the program. Figure 1 shows the [User Form] tab. Do not worry too much about the format of your numbers in cells C13:C18just be sure to declare your variables as the specified type. If there is a multi-day tour, the program will be run for each day of the multi-day tour. Thus your program does not need to support calculations for more than one day at a time. Figure 1: [User Form] Tab Batch Estimates. OT often wants to estimate batches of trips. In this case, the program should take all of the tours shown as inputs on the [Batch Input] tab, estimate them one at a time, and write the results to the [Batch Output] tab. To estimate all trips within a batch, the user presses the Run Batch button on the [User Form] tab. The [Batch Input] tab. Figure 2 explains the data on the [Batch Input] tab. All passenger inputs for Batch Estimates will be between 20 and 120 people. Figure 2: [Batch Input] Tab The [Batch Output] tab. Figure 3 shows how your program should organize the outputs on the [Batch Output] tab. Figure 3: [Batch Output] Tab. Summary of the Project Assignments and Details: Create a flowchart for the process of completing an estimate for a single tour. You are not required to create a flowchart for the Run Batch process. Upload this flowchart separately from your completed workbook in the file upload box below (to facilitate grading). Download the Olympus Tours Programming Project Worksheet below. Do not make your own workbook. Add VBA code to complete the project. Your VBA code should work with the cells that are already positioned on the [User Form] tab of the workbook. Do not change the cell locations or layout on the [User Form] tab within the workbook. In addition, do not add or delete any columns or rows. Use VBA to do all of the calculations. Do not use spreadsheet functions. Add your VBA code to the two existing subroutines that have been started in Module1 already within the workbook. Add your code to the subroutine named EstSingle() that will run when the user presses the Run Single Button. Add your code to the subroutine named EstBatch() that will run when the user presses the Run Batch Button. Connect the appropriate subroutine to the respective buttons, so that the correct subroutine will run when the button is pushed. In your code, use the Option Explicit setting for both subroutines. (This should already be set.) Verify this by ensuring that the first line of code says Option Explicit. Use Dim statements to declare all variables that you use in your code. Declare the variables as the data types shown on Column D of the [User Form] tab. However, if this results in an overflow error, you are welcome to use the Variant variable type. This erroneous overflow error is due to some internal VBA issue that Microsoft has not yet fixed in some versions of Excel. For the batch output, make sure it is all the same font style and size, AND the numbers are formatted correctly (e.g., currency has dollar signs and decimals, percents have % signs, whole numbers like NS and NL don't have decimals, etc.). Test your program with a variety of inputs to ensure it works properly before you turn in your assignment. You do not need to calculate PPBR or EHP. Rather, your sub should take whatever values of PPBR and EHP are provided by the user in the setup variables section in the single estimate user form. Upload your completed Excel workbook in the appropriate upload box below. Do not forget to handle user inputs that are invalid (i.e., <20 or>120 passengers) for single-trip estimates as indicated in the description above. Be sure your batch Sub can handle extra batches of data (same format as existing batches) added to the bottom of the batch input tab. Be sure your batch Sub can handle extra spaces (1 or more empty rows) between batches of data. Please comment your code so that it is easy for a grader to follow. Code without comments may be penalized. Partial credit is also much easier to grant if there are comments in the code

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Auditing and Assurance Services A Systematic Approach

Authors: William Messier Jr, Steven Glover, Douglas Prawitt

10th edition

77732502, 978-0077732509

More Books

Students also viewed these Accounting questions