Answer:
Enter the following formula in L2
=IF(AND([Service Year]>4,[Leadership Training]="Yes"),"Yes","No")
Step-by-step explanation:
Analyzing the formula:
Begin the formula with an equal to sign
IF
This indicates that the formula uses an "IF" function
AND
This indicates that there are at least 2 conditions in the function; all of which must be true for the function to return true.
The conditions in the formula are:
[Service Year]>4; and [Leadership Training]="Yes"
Notice that the column names (service year and leadership training) are called and not the cell names (e.g. K2); this is what is referred to as structured referencing.
Having said that, both conditions must be true for the function to return true (because we use the AND clause to join both functions)
The possible results in the formula are:
"Yes","No"
If both conditions are true, then the value of L2 will be "Yes"
If otherwise, then the value of L2 will be "No"