2017-07-14 103 views
0

幫助公式根據以下標準:Excel公式說明:如果單元格爲空,然後XYZ

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")) 
+0

「_這只是返回一個error_」和最新的錯誤? –

回答

0

在K欄輸入該式中,

=IF(AND(I1="";J1="");"Initiated";IF(AND(I1<>"";J1<>"");"Complete";"Invited")) 

enter image description here

+0

這工作完美。謝謝。 –

相關問題