443,416 views
11 votes
11 votes
Enter an IFS statement to provide the certification grade based upon score (use the<=in your formula) include the IFERROR message as a error catch

User Nick Ruiz
by
3.1k points

1 Answer

9 votes
9 votes

Answer:

=IFERROR(IF(score<=100,"A",IF(score<=90,"B",IF(score<=80,"C",IF(score<=70,"D",IF(score<=60,"F","Invalid"))))),"Invalid")

User Hubert Olender
by
3.1k points