44.0k views
0 votes
On the Attendance worksheet, in cell L5, enter an IF function to determine if the percentage in cell K5 is greater than or equal to the goal in cell H18. The function should return the text Goal Met if true and Review if false. Set the reference to cell H18 as an absolute reference.

User Novi
by
4.7k points

1 Answer

5 votes

Answer:

=IF(K5>=H18,"Goal Met", "Review")

Step-by-step explanation:

The syntax of if the statement is as below:

=If( logic test, if true then this, if false then this)

And hence, and as in question logic test is k5>=H18, and on true the output should be Goal met, and on false the output should be review. And hence, we get the above formula, and which is the required answer.

User JohnOpincar
by
5.1k points