Passing Grade - Help again

R

Robin

* Posted earlier but threads show that messages are no longer available on
the server. Just posted an hour ago.
Message is no longer available on the server

Hi all,

I am preparing an exam marksheet.

Grades for two subjects, History and Geography, are filled in cell E9 and
F9, respectively.
Grades are from A, B, C, D, and E.

In cell G9, I want a result to show overall result i.e. "PASS" or "FAIL"
when grades are filled in E9 and F9.

Requirement to PASS:-
Students must get at least a C in BOTH subjects. (no grade D or E in cells
E9 or F9).

Can someone help me with the formula?

Thanks.

Regards,
Salza
 
J

JMay

Ugly, but it works.. In G9 enter: (And Copy down)
=IF(AND(OR(E9="A",E9="B",E9="C"),OR(F9="A",F9="B",F9="C")),"PASS","")
HTH
 
J

JMay

opps, 2 things:
s/b
=IF(AND(OR(E9="A",E9="B",E9="C"),OR(F9="A",F9="B",F9="C")),"PASS","FAIL")

didn't understand your comment
(no grade D or E in cells
 
A

AlfD

You might try =IF(AND(E9<"D",F9<"D"),"Pass","Fail") in the G9 cell etc.

I don't know how familiar you are with Boolean concepts (grand words
easy stuff, actually) and ASCII codes. The essence is that a formul
like this does two things:

it compares a cell value with a letter just as you do in sorting ( "A
is less than "B" etc: the ACII code for "A" is 65 and for "B" is 66 an
so on);

it then says "if (both E9 is less than "D" and F9 is less than "D"
then register a Pass, otherwise (else) register a Fail". I know it is
bit anti-intuitive to say a "C" is less than a "D" (after all, we al
know a "C" is _better_ than a "D"), but ASCII is not a value-judgement
it is a number.

Sorry to get a bit pedantic, but better that than over-complicate wha
is both fundamental and very straightforward
 

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

Similar Threads

Passing Grade 2
Grade - One and Four Others 2
One Pass And Plus Five More 2
How To Rank The Grade 5
Formula - pass and fail 3
Formula - Pas or Fail 1
Grading System 3
Ranking 1

Top