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

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -