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.
kalpeshvaghela
Aug 18, 2022Iron Contributor
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.
Rense620
Aug 22, 2022Copper Contributor
Thank you! Now it works well.