If statement 用于跨多个选项卡查找元素的Google工作表公式

If statement 用于跨多个选项卡查找元素的Google工作表公式,if-statement,google-sheets,google-sheets-formula,array-formulas,gs-vlookup,If Statement,Google Sheets,Google Sheets Formula,Array Formulas,Gs Vlookup,我试图填充F列中的值,“表”选项卡中的“产品销售日期” 基本上。。。逻辑如下: 1) If Column C (Product Status) = "Paused", then return "Paused" 2) If Product start date = NULL or Product end date = NULL, then return NULL 3) If Product start date < today`s date, then return

我试图填充F列中的值,“表”选项卡中的“产品销售日期”

基本上。。。逻辑如下:

    1) If Column C (Product Status) = "Paused", then return "Paused"
    2) If Product start date = NULL or Product end date = NULL, then return NULL
    3) If Product start date < today`s date, then return "No Data"
    4) If Product start date >= today`s date, return "Upcoming"
    5) If product End date <= today`s date, return "Ended"
    6) If product start date <= today`s date, return "In Market"
7) If the condition does not belong to any of the above cases, then return the actual Product launch dates
1)如果C列(产品状态)=“暂停”,则返回“暂停”
2) 如果产品开始日期=NULL或产品结束日期=NULL,则返回NULL
3) 如果产品开始日期<今天的日期,则返回“无数据”
4) 如果产品开始日期>=今天的日期,则返回“即将到来”
5) 如果产品结束日期则您的配方为

=IF(C2="Paused",C2,if(OR(A2="",B2=""),"",IF(A2<TODAY(),"No Data",IF(A2>=TODAY(),"Upcoming",IF(B2<=TODAY(),"Ended",IF(A2<=TODAY(),"In Market","Actual Product Launch dates"))))))
=IF(C2=”暂停“、C2、IF(或(A2=”、B2=”)、IF(A2=今天()、”即将到来“、IF(B2您的公式将是

=IF(C2="Paused",C2,if(OR(A2="",B2=""),"",IF(A2<TODAY(),"No Data",IF(A2>=TODAY(),"Upcoming",IF(B2<=TODAY(),"Ended",IF(A2<=TODAY(),"In Market","Actual Product Launch dates"))))))
=IF(C2=”暂停“、C2、IF(或(A2=”、B2=”)、“”、IF(A2=TODAY()、”即将到来“、IF(B2
=ARRAYFORMULA(
如果(C2:C=“暂停”,C2:C,
如果((A2:A=“”)+(B2:B=“”),
如果(A2:A>=TODAY(),“即将到来”,
如果(B2:B
=ARRAYFORMULA(
如果(C2:C=“暂停”,C2:C,
如果((A2:A=“”)+(B2:B=“”),
如果(A2:A>=TODAY(),“即将到来”,

如果(B2:B我打算进一步澄清这个问题,实际上…这非常令人困惑我打算进一步澄清这个问题,实际上…这非常令人困惑3)和7)中有冲突3)和7)中有冲突7)谢谢你的帮助!!,我算出了这些:)谢谢你的帮助!!,我算出了这些:)