Forum Discussion
Rense620
Aug 17, 2022Copper Contributor
Conditional form format with two conditions not working
Hopefully somebody can help me with this. I have a list, and a column named "type" with 3 choices. Early, Late, Weekend. I am trying to hide a field in the New Item form based on these three. T...
- Aug 18, 2022
You should try below formula, it should work:
=if([$Soortdienst] == 'Early' || [$Soortdienst] == 'Weekend' , 'true', 'false')
Official Documentation:
Hope it will helpful to you and if so then please mark my response as Best Response & Like to help others in this community.
ganeshsanap
Aug 18, 2022MVP
Rense620 Also, make sure:
- You are using correct internal name of your column in conditional formula as it does not work with display names of columns.
- You are applying this formula for correct column - "Working hours 1".
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.
Rense620
Aug 22, 2022Copper Contributor
Thanks for your comment! You right.