Forum Discussion
Byking23
Nov 16, 2023Copper Contributor
Calculated column w/ IF condition not showing the false value
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...
ganeshsanap
Nov 23, 2023MVP
Byking23 Try using formula like this:
=IF(ISERROR(FIND("B11",[NCF])),0,[Col1])
Output:
Note:
- Sometimes comma( , ) does not work in formula (it is based on language or regional settings on your site). So in that case use semicolon( ; ) instead of comma( , ).
- Use correct display name of your SharePoint columns in above formula.
- Wrap column names inside [] if your column name has space in it. For example: [My Column Name].
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.