Excel If Statement Just knocking up a spreadsheet. One of the cells, which will indicate pass or fail, relies on a certain figure being over 40. However, since i am making a template, at the minute most of the values are 0 as there are no figures entered, so "fail" is shown. I only want pass or fail to be shown if a certain cell has a value present. (or simply to be greater than 0 before its used) How can I do this? Nested If? If And? Cheers
Just had a play about, I think this should do what you want... =IF(ISBLANK(A1),"",IF(A1<5,"Fail",IF(A1>=5,"Pass"))) A1 obviously being the cell of the exam result, and I just used 5 as an example pass level. Hope this helps