175,757 views
42 votes
42 votes
In cell H5, enter a formula using the IF function that tests whether the numbe

years is greater than or equal to 4. If it is, display "Y" in cell H5. If it is not,
display "N" in cell

In cell H5, enter a formula using the IF function that tests whether the numbe years-example-1
User Kishan Kumar
by
3.0k points

2 Answers

20 votes
20 votes

Answer:

=IF(E10>=4,"Y","N")

Step-by-step explanation:

This was already correctly answered. I'll add some futher explanation.

The "E10>=4" states "The contents of cell E10 are greater than, or equal to, 4. The entry after the comma is the response if the statement is TRUE. The reponse may be a numerical vale, such as 1, a calculation, or taex. Text must be bounded by the quotation marks: "Y". The entry after the last comma is the response if the statement were FALSE. Here, is will return an N.

User Arijit Mukherjee
by
3.2k points
19 votes
19 votes

Answer:

Formula : =IF(E5>=4, "Y", "N")

Formula Explanation : =IF(cell_name>=4, [value_if_true], [value_if_false]

Step-by-step explanation:

After Writing this Formula in cell H5 Drag it to the cell till where you want.

User Ramadhan
by
3.1k points