excel - Google Spreadsheet- Based on text in different cells, change another cell text -
please me create simple google spreadsheet.
1st function
if value/text in cells c3, d3 & e3 ="passed"- change f3's value "passed" else show "failed"
2nd function
if value/text in of cell "passed"- change f3's value "passed" else show "failed"
for first function, need enter following in cell f3:
=if(and(c3="passed",d3="passed",e3="passed"),"passed","failed")
this checks whether c3, d3 , e3 contain "passed" , if returns "passed". second function, similar:
=if(or(c3="passed",d3="passed",e3="passed"),"passed","failed")
this checks whether of 3 cells contain "passed", , if returns "passed".
hope helps! m
Comments
Post a Comment