How to nest IF block with OR statement in Google Spreadsheet
问题 I'm looking for some help with this little code that I'm using in Google spreadsheet: =ArrayFormula(IF(OR(F2:F="Cancelled",G2:G="Cancelled"),"Cancelled",IF(F2:F="Finished",20,)+IF(G2:G="Finished",20,))) For some reason it works if I use this code without calling multiple rows: =ArrayFormula(IF(OR(F2="Cancelled",G2="Cancelled"),"Cancelled",IF(F2="Finished",20,)+IF(G2="Finished",20,))) Does anyone have an idea which is the correct way to use it? Thanks in advance. 回答1: OR merges all TRUE s to