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