Forum Discussion
Calulated COlumn Double If Function
- Feb 13, 2024
jamescosten the formula isn't quite correct, use this instead:
=IF(OR([Observation Required]=TRUE,[NCR Required]=TRUE),"Fail","Pass")Rob
Los Gallardos
Microsoft Power Automate Community Super User.
Principal Consultant, SharePoint and Power Platform WSP Global (and classic 1967 Morris Traveller driver)
jamescosten the formula isn't quite correct, use this instead:
=IF(OR([Observation Required]=TRUE,[NCR Required]=TRUE),"Fail","Pass")
Rob
Los Gallardos
Microsoft Power Automate Community Super User.
Principal Consultant, SharePoint and Power Platform WSP Global (and classic 1967 Morris Traveller driver)
- jamescostenFeb 14, 2024Brass ContributorThank you very much
- ganeshsanapFeb 14, 2024MVP
jamescosten Here is a shorter version of same formula (as Yes/No columns return TRUE/FALSE by default):
=IF(OR([Observation Required],[NCR Required]),"Fail","Pass")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.