asked 163k views
3 votes
In cell N2, enter a formula using the IF function and a structured reference to determine if Alison Simoneau is eligible for tuition remission.

a. The IF function should first determine if the staff member's Service Years 11 is greater than 1. Remember to use a structured reference to the Service Years column.
b. The function should return the text Eligible if the staff member's Service Years is greater than 1.
c. The function should return the text Not Eligible if the staff member's Service Years is not greater than 1.

asked
User Aleadam
by
8.5k points

1 Answer

2 votes

Answer:

In cell N2, enter a formula using the IF function and a structured reference to determine if Alison Simoneau is eligible for tuition remission.

=IF([Service Years]>

a. The IF function should first determine if the staff member’s Service Years is greater than 1. A structured reference to the Service Years column:

=IF([Service Years]>1,

b. The function should return the text Eligible if the staff member’s Service Years is greater than 1.

=IF([Service Years]>1,"Eligible"

c. The function should return the text Not Eligible if the staff member’s Service Years is not greater than 1.

=IF([Service Years]>1,"Eligible","Not Eligible")

answered
User Meatherly
by
8.9k points
Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.