In: Computer Science
a. IF function is used whenever there is a condition to be met for e.g =IF(C2>60,"Pass","Fail").For more than one condition nested IF is used like in this case OR is used since there are two conditions and fulfilling any one of the two should give positive result and a negative result if both conditions are false.Like in the Question OR will be used for the condition Post-Secondary years >=2 and Student financial certificate status as If any one of these condition is true then the result should be Yes and if both condition are false then result should be No.
In cell K2 enter the below formula that uses IF and OR functions to determine whether Kay colbert can join the leadership training program or not.
First click on the K2 cell and enter the formula.
=IF(OR([@[Post-Secondary Year]]>=2,[@[Finance certified]]="Yes"),"Yes","No")
As per the formula if he has Post secondary years more than 2 OR if his student finance certified status is yes then the text Yes will be returned
If neither of the condition is fulfilled then the text No will be returned.
b. To fill the formula into the range K3:k31 follow these steps
Right click on cell K3
Drag the clicked mouse till K31
unclick the mouse. you will see that there is a blank space at K3 while the rest of the cells are highlighted,
Enter the formula on the blank space and press Ctrl + Enter.
This will fill the formula in the range K3:k31