Nov 16 2023 07:09 AM
Good day everyone,
I'm trying to create a calculated money column which looks another column to find and specific text and if is TRUE is gonna be the value of another money column already created and if FALSE it must be $0.00.
Here the query: =IF(FIND("B11",NCF),[Col1],0)
When false is throwing me #¡VALOR!
Please can somebody help?
Nov 16 2023 09:00 AM
Nov 16 2023 10:01 AM
Nov 23 2023 05:33 AM - edited Nov 23 2023 05:34 AM
If the "false result" is throwing an error, then you're using wrong a data type for your false value, corresponding to your target column.
0 is a number (col), "0" is a string/text.
Nov 23 2023 05:57 AM
@Byking23 Try using formula like this:
=IF(ISERROR(FIND("B11",[NCF])),0,[Col1])
Output:
Note:
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.