根据以下标准帮助制定公式:
If cells I and J are blank then K = "Initiated"
If cell I has a date and J is blank then K = "Invited"
If cells I and J have a date then K = "Complete"
我将如何编写此公式 - 我相信我会从以下内容开始 - 但是,这只会返回错误
=IF(AND(NOT(ISBLANK(I2));NOT(ISBLANK(J2)));IF((I2&J2="";"Initiated";"Invited");"Complete"))