1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Oliga [24]
3 years ago
15

Enter a formula in cell B10 to return a value of 35000 if the Net Profit After Tax (cell B9) is greater than or equal to 470000

or 1000 if it is not.
Computers and Technology
2 answers:
FrozenT [24]3 years ago
6 0

Statement to be written in cell B10 :

IF ( B9 >= 470000, 35000, 1000)

Formula:

IF ( logical_test ,  [value_if_true] ,  [value_if_false] )

Explanation:

  1. logical_test = Net Profit After Tax (cell B9)
  2. value_if_true = 35000

<em>(if the Net Profit After Tax (cell B9) is greater than or equal to 47000 )</em>

<em>     </em>3<em>.</em> value_if_false = 1000

<em>(if the Net Profit After Tax (cell B9) is lesser than 47000 )</em>

Each value should be separated by comma.

vaieri [72.5K]3 years ago
6 0

The formula written to cell B10 is

IF (B9> = 470000, 35000, 1000)

IF (logical_test, [value_if_true], [value_if_false])

<h2>Further Explanation </h2>

The IF function is one of the most popular functions in Excel, which allows you to make logical comparisons between values ​​and estimates.

Therefore, IF statements can have two results. The first result if your comparison is True and the second result if the comparison is False.

For example, = IF (C2 = "Yes", 1,2) means IF (C2 = Yes, then give 1, if not give 2).

<h3>= IF (C2 = 1, "Yes", "No") </h3>

In this example, the formula in cell D2 says: IF (C2 = 1 then give Yes, if not give No) As you can see, the IF function can be used to evaluate text and values. The IF function can also be used to evaluate errors. You are not limited to only checking if one thing is the same as another and giving one result, you can also use a mathematical operator and do other calculations depending on your criteria. You can also stack multiple IF functions together to do multiple comparisons.

<h3>= IF (C2> B2, "Exceeding Budget", "In Budget") </h3>

In the example above, the IF function in D2 says IF (C2 Is Greater Than B2, returns "Exceeds Budget", if not returns "In Budget")

Learn More

IF in Excel brainly.com/question/11853071

The Formula brainly.com/question/11853071

Details

Class: High School

Subject: Computers and technology

Keyword: IF, excel, formula

You might be interested in
You have a website that sells widgets, and you have a category page specifically for blue widgets. After some extensive outreach
REY [17]

Answer:

It will increase your ranking on the homepage.

Explanation:

Widgets are easy to use software applications made up of one or more components.

Widgets will provide you with a quick access to information or data and there won't be any need to open the app that manages that information.

That is to say, without requiring you to open the app that manages a certain data or information you want to access, Widgets opens it for you.

For instance, The Calendar widget, provides you a quick view of your upcoming calendar events without opening the Calendar app.

Your rankings on the homepage will increase if more links are added to your blue widgets.

7 0
3 years ago
Which section is optional in a resume?
suter [353]

<em>Career Objectives </em>are pointless in a resume, Things like experience, Contact details, education and skills, help the company decide whether to take you or not, in accordance with their needs. They don't need to know why you want the job as opposed to how you could help them.

7 0
3 years ago
In Oracle, _____ make(s) it possible to merge SQL and traditional programming constructs, such as variables, conditional process
ExtremeBDS [4]

Answer:

Procedural SQL

Explanation:

3 0
3 years ago
Given the following declaration of a field in a class: public static final String GREETING = "Hi";
FromTheMoon [43]

Answer:

Each object of this class has its own copy of GREETING

Explanation:

option c: Each object of this class has it’s own copy of GREETING

This is the only false statement.  When a variable is preceded by the Static key word only one copy of that variable is created, no matter the amount of object created from the instance of that class.

option a: Each object of this class can access GREETING, this is true.

option b: The value of GREETING can’t be changed in any methods, this is true because GREETING is preceded by the keyword final.

option d: GREETING.length() = 2, this is true because the method length() is use to get the length of the string "Hi" which is 2.

option e: GREETING.toUpperCase() = "HI", this is also true because the method toUpperCase()  convert all the character of "Hi" to uppercase.

Note: All these are peculiar to java programming language.

8 0
3 years ago
The smallest signed integer number, base 16, that can be store in a variable of type BYTE is__________.
sveta [45]

Answer:

The correct answer is ushort

8 0
3 years ago
Other questions:
  • Holly would like to run an annual major disaster recovery test that is as thorough and realistic as possible. She also wants to
    5·1 answer
  • After this week im gonna be moderator who ever needs help let me know
    5·1 answer
  • Write the definition of a function printDottedLine, which has no parameters and doesn't return anything. The function prints to
    10·1 answer
  • Paul has been working long hours. He is tired and distracted by family issues,
    10·1 answer
  • What type of ransomware was developed to block the user from accessing the computer and encrypts all the files on the user's dev
    5·2 answers
  • Which of the follow will happen if you miss a monthly credit card payment?
    11·1 answer
  • How is knowing how to use word or docs importamt?
    8·1 answer
  • Enzo is writing a paper about the similarities and differences between ancient Rome and modern America. Which text structure is
    9·2 answers
  • Write the features of Mark-I.​
    7·1 answer
  • a data analyst is working with a spreadsheet that has very long text strings. rather than counting the characters themselves to
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!