Question
Could someone help me please. I’m really bad at Computer Science Engineering :(
Sheet:flights! New York Boston New York New YorkChicag American Continen at least 1 fly to least Sheet:analysis! Sheet:costs! 500 New York Within Budget Fare 2 Airline 4 American 5 Continental 600 over budget 420.00 360 within budget S 288.00 You are going to complete an analysis of several airline carriers to consider entering into negotiations for a corporate discount. On sheet flights! you have compiled information regarding the number of flights from Columbus to certain key cities to which your employees frequent travel. On sheet analysis! you will be analyzing this information. Sheet costs! contains data on roundtrip airfares from Columbus to New York. You will be using this worksheet to compare these costs with your budget and to calculate possible discounted fares. Remember when referring to cells on different worksheets (other than where you are currently inputting your formula), you will need to use the sheet name in your cell address Write a formula in cell analysis!B3, which can be copied across the row and down the column into range B3:D6, to determine (True/False) if this airline has any flights to this destination. Write a formula in cell analysis!E3, which can be copied down the column, to determine (True/False) if this airline has flights to all 3 locations. Use a Boolean function 3. Write a formula in cell analysis!F3, which can be copied down the column, to determine (True/False) if this airline has flights to any of the 3 locations. Use a Boolean function.
media%2F84a%2F84aedb0d-f331-4301-a83e-b0
0 0
Add a comment Improve this question Transcribed image text
Answer #1

1. =IF(AND(Flights!B3:D6<>0),"TRUE","FALSE")

2. all locations

=IF(OR(B3="TRUE",C3="TRUE",D3="TRUE"),"TRUE","FALSE")

3. Atleast one location

=IF(OR(C3="TRUE",D3="TRUE",E3="TRUE"),"TRUE","FALSE")

Does not fly to boston

=IF(Flights!B3=0,"TRUE","FALSE")

4. =IF(Flights!B3=0,"TRUE","FALSE")

5. =IF(AND(B3="TRUE",C3="TRUE"), "TRUE", IF(AND(C3="TRUE",D3="TRUE"), "TRUE", IF(AND(B3="TRUE",D3="TRUE"), "TRUE", "FALSE")))

7. =IF(AND(OR(B3="TRUE",C3="TRUE"),AND(D3="TRUE")),"TRUE","FALSE")

8. =IF(B3<=500,"Within Budget","Over Budget")

9. =B3-(B3*20)/100

10. =IF(B3>5,"Frequently",IF(B3=0,"Never","Occassionally"))

Bookl Microsoft Exce HomeInsert Page LayoutFormulas Data Review View @-厅ㄨ s Cut Σ AutoSum Times New Rom, 13 -AA -==ap -wrap Text General Copy Paste ». ▲ . % , al.o Forna tional asom ble·styles. B 1 프 田 Ξ, İ İF d Merge & Center, Insert Delete Format Sort & Find & 2Clear Filter Select Editing Clear Clipboard Font Alignment Styles Cells ЕЗ IF(B3>5,Frequently,IF(B3-0, Never,Occassionally)) # of Flights from Columbus; Boston New York Chicago Flight frequently from Columbus Boston Airline New York Chicago ty Occassionally Occassionally Occassionally 3 America West 4 American 5 Continental 6 Delta 5 OccassionallyFr 4 Neven 01Occassionallv |Occassionally! Never 0 Neve Never Never 12 15 17 19 21 44トト! 100% ;

Add a comment
Know the answer?
Add Answer to:
Could someone help me please. I’m really bad at Computer Science Engineering :( Sheet:flights! New York...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • MS Excel 1. In the following Exel table, what formula could be typed (in cell C9) to determine the Mass vae if de Eanb was multiplied by he Mass (Me) for the planet Mars ? Use only cell locations...

    MS Excel 1. In the following Exel table, what formula could be typed (in cell C9) to determine the Mass vae if de Eanb was multiplied by he Mass (Me) for the planet Mars ? Use only cell locations m your formula (Le, no เสแฝ wlusi Ast. Unit 99E430 Sun Mass 0.0550 1.0000 317.8000 Mercury enus Earth Jupiter 10 TOTAL RITE YOUR CORRECT FORMULA IN THE SPACE BELOW one copied this new formula (cell C9 from Problem #1) and pasted...

  • JAVA QUESTION!!! please help! The following codes are a Maze program. There are TWO traversable paths...

    JAVA QUESTION!!! please help! The following codes are a Maze program. There are TWO traversable paths possible in this maze. The program uses recursion. Can someone please explain to me why the program will pick one path if multiple traversable paths are available? Why does the program choose one path over a different path? (I believe it has something to do with the recursion terminating when a solution is found but I'm not sure.) Thank you!!!! The codes: public class...

  • You are going to be implementing the classic computer science simulation, Conway's Game of Life. Conway's...

    You are going to be implementing the classic computer science simulation, Conway's Game of Life. Conway's Life is played on a matrix of cells, kind of like a chess board but theoretically extending infinitely in every direction. Each individual cell in the matrix can either be alive or dead. A live cell in the matrix is shown in our simulation by printing an asterisk (*) to the screen. A dead cell is shown by leaving that area of the matrix...

  • can please someone help me with this assignment What is boilerplate text? A sales proposal can...

    can please someone help me with this assignment What is boilerplate text? A sales proposal can be changed after it is submitted. True False When writing incident reports, it is extremely important to include precise times, dates, locations, treatment of injuries, names of witnesses and other crucial information in a neutral tone because the information included in the incident report may be used in insurance claims, workers' comp awards, and lawsuits. True False i need help with this matching   ...

  • Can someone please help me write an introduction paragraph and summary of this article. The New...

    Can someone please help me write an introduction paragraph and summary of this article. The New Bjork Times ECONOMIC VIEW Trump's Tariffs Haven't Really Transformed Trade. Yet. By Justin Wolfers Nov. 21, 2018 President Trump's protectionist impulses have upended the global debate about international trade. But so far, his policies have barely changed a fundamental reality: The United States is still less protectionist than it has been throughout most of its history or than most nations are today Even if...

  • PLEASE HELP!!!! 1) CONDITIONAL FORMATTING - Add conditional formatting to the Hours Worked field ...

    PLEASE HELP!!!! 1) CONDITIONAL FORMATTING - Add conditional formatting to the Hours Worked field data so that any hours worked greater than 8 will show in white font with a dark fill. 2) DATABASE FUNCTION - Create a database function in cell E5 that calculates the average hours worked by males in Dept. No. 2. If criteria are needed, start in cell E1. 3) VLOOKUP - In the Department field (column D) use the VLOOKUP function to place the appropriate...

  • could you please help me with this problem, also I need a little text so I...

    could you please help me with this problem, also I need a little text so I can understand how you solved the problem? import java.io.File; import java.util.Scanner; /** * This program lists the files in a directory specified by * the user. The user is asked to type in a directory name. * If the name entered by the user is not a directory, a * message is printed and the program ends. */ public class DirectoryList { public static...

  • Can you please provide the formula for the worksheet also. CASE PROBLEMS Level 1- Analyzing Sales...

    Can you please provide the formula for the worksheet also. CASE PROBLEMS Level 1- Analyzing Sales for Crèmes Ice Cream Judd Hemming is the eastern regional marketing manager for Crèmes Ice Cream. Eac quarter, he completes two separate analyses: an analysis comparing ice cream flavor sale volumes from all regional locations with the same quarter sales volumes from the previou year and an analysis comparing total sales in dollars, including mean, median, mode, and standard deviation, of sales by store....

  • Hello can someone please help me with this queshtion its 3 time I post this please....

    Hello can someone please help me with this queshtion its 3 time I post this please. The queshtion is in the buttom. Im really confused from what to choose I have been second guessing myself. The Economics of Immigration Paul Krugman In 1970, only 5% of U.S. workers had been born abroad. By 2016, however, 17% of American workers had immigrated to the United States, both legally and illegally. (1) Figure 1: Percentage of U.S. labor force that is foreign-born...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT