简体   繁体   中英

Excel If Formula - Generic Error Message

I'm dumbfounded as to why the if formulas in my excel work books don't work. Something simple as =if(F2=0, TRUE, FALSE) throws a generic error "There's a problem with this formula." Not sure where to turn in regards to this. Column H is formatted as General. 在此处输入图片说明

Start writing the formula and Excel will show you the correct format. In the case below, it is using ; for divisors. In your case it could be , :

在此处输入图片说明

You need to specify that you want to return a text value by using speech marks

=if(F2=0, TRUE, FALSE)

Should be

=if(F2=0, "TRUE", "FALSE")

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