IF conditional for 3 conditions?

J

James Brannan

Hi, I'm working on a spreadsheet for school. According to the student's
grades they will be given a result - Pass (=>60) or fail (<60).

=IF(H58>=59.5, "Pass", "Fail")

What I need to be able to add to this is "No show" if the student didn't
attend and got 0.

Any help would be much appreciated,
Thanks,

James
 
M

Mike H

slight refinement

=IF(H58<>"",LOOKUP(H58,{0,1,60},{"No Show","Fail","Pass"}),"")

Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top