Using “If cell contains #N/A” as a formula condition.

后端 未结 4 1889
失恋的感觉
失恋的感觉 2021-02-03 16:55

I need help on my Excel sheet. How can I declare the following IF condition properly?

if A1 = \"n/a\" then C1 = B1
else if A1 != \"n/a\" or has valu         


        
4条回答
  •  青春惊慌失措
    2021-02-03 17:48

    Input the following formula in C1:

    =IF(ISNA(A1),B1,A1*B1)

    Screenshots:

    When #N/A:

    enter image description here

    When not #N/A:

    enter image description here

    Let us know if this helps.

提交回复
热议问题