简体   繁体   中英

Multiple IF and ISBLANK in 1 Formula

Greeting

i have a problem with a formula

=IF(ISBLANK(AK20),""," - "&AK20&" "&K19&" "&O19&" = "&AM20&""),IF(ISBLANK(AK21),""," - "&AK21&" "&K19&" "&O19&" = "&AM21&"")

在此处输入图像描述

in counter a #VALUE Result.

Any idea how to fix it??

Thanks

Common error between two IF function. First if already completed and you start second if with comma with would be concatenate operator like

=IF(ISBLANK(AK20),""," - "&AK20&" "&K19&" "&O19&" = "&AM20&"") & IF(ISBLANK(AK21),""," - "&AK21&" "&K19&" "&O19&" = "&AM21&"")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM