Forum Discussion
Calculated Column using ISBLANK and IF, with date Columns
- Aug 23, 2023
Anubis66614 NETWORKDAYS() function is not supported in SharePoint calculated formulas.
You have to use the formula like:
=IF(ISBLANK([1ST PROBATION REPORT RECEIVED DATE]),"",DATEDIF([1ST PROBATION REPORT RECEIVED DATE],[1ST PROBATION REPORT DUE DATE],"d"))
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.
Anubis66614 NETWORKDAYS() function is not supported in SharePoint calculated formulas.
You have to use the formula like:
=IF(ISBLANK([1ST PROBATION REPORT RECEIVED DATE]),"",DATEDIF([1ST PROBATION REPORT RECEIVED DATE],[1ST PROBATION REPORT DUE DATE],"d"))
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.
If above formula still giving you the syntax error, try this:
- 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.