I would like to make a formula on excel file which require to meet the following requirements:
After run, it prompt up the error message of "You've entered too many arguments for this function". May I know what's wrong with me?
Thanks.
=IF(ISBLANK(N815),"", IF(OR(N815="C",N815="O"),"","Invalid Value!", IF(AND(N815="C",ISBLANK(T815)),"Please write something here!")))
Did you know that you can indent your formula in the formula bar? :)
=IF(
Something is True,
then do something,
otherwise do something else
)
It is much easier to write when you want multiple IFS
=IF(
ISBLANK(N815),
"",
IF(
OR(N815="C",N815="O"),
IF(
AND(N815="C", ISBLANK(T815)),
"Please write something here!",
""
),
"invalid value"
)
)