I have been searching for a formula that will allow me to do what should be a simple开发者_StackOverflow conditional format.
I have a list of students and beside each name is a column that calculates the grade in recent exams. If this grade is 50% or higher I would like the cell beside it to display "Pass", otherwise it should display "Fail" by default.
I just can't seem to find any information on how to do this.
I'm using Excel 2010.
Thanks
This is the simplest solution:
=IF(A1 >= 50, "Pass", "Fail")
精彩评论