google sheet IF AND 对于一系列行
google sheet IF AND for a range of rows
google sheet
https://docs.google.com/spreadsheets/d/14PppjEwic_4N61A44BHhGMHwGecLqVqeOucWfg5YJmE/edit?usp=sharing
我有四列数据,在第五列中我希望得到 "yes" 或 "no"
我的标准是
是 = 如果第 1 列有 "received",第 2 列有 "open",第 3 列有 ">20"
,第 4 列有 "<5000"
我有以下内容只适用于一行,不适用于 Arrayformula
=IF(AND(A2="received",B2="open",C2>20,D2<5000),"yes","no")
任何帮助都会很棒,谢谢
在 E2 中尝试这个公式
=Arrayformula(if(len(A2:A), if((A2:A="received")*(B2:B="open")*(C2:C>20)*(D2:D<5000)=1, "Yes", "No"),))
看看是否可行?
google sheet https://docs.google.com/spreadsheets/d/14PppjEwic_4N61A44BHhGMHwGecLqVqeOucWfg5YJmE/edit?usp=sharing
我有四列数据,在第五列中我希望得到 "yes" 或 "no"
我的标准是
是 = 如果第 1 列有 "received",第 2 列有 "open",第 3 列有 ">20"
,第 4 列有 "<5000"
我有以下内容只适用于一行,不适用于 Arrayformula
=IF(AND(A2="received",B2="open",C2>20,D2<5000),"yes","no")
任何帮助都会很棒,谢谢
在 E2 中尝试这个公式
=Arrayformula(if(len(A2:A), if((A2:A="received")*(B2:B="open")*(C2:C>20)*(D2:D<5000)=1, "Yes", "No"),))
看看是否可行?