Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Week 4 Homework Assignment, Assignments of MS Microsoft Excel skills

PF 106 homework 4 assignment, earned an A.

Typology: Assignments

2021/2022

Available from 02/11/2022

crism7
crism7 🇺🇸

8 documents

1 / 3

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
MODULE 4 HOMEWORK ASSIGNMENT
(45 points)
As a travel agent you have collected information for your clients on various American cities for their
winter vacation plans including: the number of art museums, the average hotel costs per night,
roundtrip airfare from Columbus, and average temperatures in December since that is when they plan
to travel. You now need to summarize this information to determine which options meet each of your
client’s requirements.
Data given in the problem is shaded gray. You will be providing proper formulas or functions for the
remaining data in the unshaded cells by answering the following questions using cell references from
this worksheet. You will type your answers in this document. There is no Excel file provided for this
assignment. Note that once you have completed a question, you may use the results of that question in
subsequent problems. Remember to start all formulas or functions with an equal (=) sign and to always
use cell references and functions where possible. Only use a $ if necessary when copying formulas down
or across.
1. (0-5 pts) Write an excel formula or function in Cell F2, which can be copied down, to calculate the
cost of a week in the corresponding city. (Includes seven nights in a hotel and one roundtrip airfare.)
=C2*7+D2
Page 1 of 3
pf3

Partial preview of the text

Download Week 4 Homework Assignment and more Assignments MS Microsoft Excel skills in PDF only on Docsity!

(45 points)

As a travel agent you have collected information for your clients on various American cities for their winter vacation plans including: the number of art museums, the average hotel costs per night, roundtrip airfare from Columbus, and average temperatures in December since that is when they plan to travel. You now need to summarize this information to determine which options meet each of your client’s requirements. Data given in the problem is shaded gray. You will be providing proper formulas or functions for the remaining data in the unshaded cells by answering the following questions using cell references from this worksheet. You will type your answers in this document. There is no Excel file provided for this assignment. Note that once you have completed a question, you may use the results of that question in subsequent problems. Remember to start all formulas or functions with an equal (=) sign and to always use cell references and functions where possible. Only use a $ if necessary when copying formulas down or across.

  1. (0-5 pts) Write an excel formula or function in Cell F2, which can be copied down, to calculate the cost of a week in the corresponding city. (Includes seven nights in a hotel and one roundtrip airfare.) =C2*7+D

(45 points)

  1. (0-5 pts) If a city has more than 10 Art Museums it is considered to have “good art”. Write an excel formula or function in cell G2, which can be copied down, to determine (TRUE OR FALSE) if the corresponding city has “Good Art”. =IF(B2>10,TRUE,FALSE)
  2. (0-5 pts) If a city has average temperatures between 50 and 80 (inclusive) it is considered to have good weather. Write an excel formula or function in cell H2, which can be copied down the column, to determine (TRUE OR FALSE) if the corresponding city has good weather. =IF(AND(E2>=50,E2<=80),TRUE,FALSE)
  3. (0-5 pts) Your client Kim considers any destination that has either good art or good weather to be acceptable. Write a formula or function in cell I2, which can be copied down the column, to determine (TRUE OR FALSE) if the corresponding city is acceptable to Kim. =OR(G2,H2)
  4. (0-5 pts) Your client Nat only wants to go to the destination with the cheapest price. Write a formula in cell J2, which can be copied down the column, to determine (TRUE OR FALSE) if the corresponding city is acceptable to Nat.

=F2=MIN(F$2:F$9)

  1. (0-5 pts) Write a formula or function in cell D10 to determine (TRUE OR FALSE) if either (Chicago is acceptable to both Kim and Nat) or (New York is acceptable to both Kim and Nat). =OR(AND(I3,J3,AND(I4,J4)))
  2. (0-5 pts) Write a formula or function in cell D11 to determine (TRUE OR FALSE) if no cities are acceptable to Kim.