Forum Discussion
RehmanR
Mar 03, 2022Copper Contributor
Show/hide columns based on 2 conditions
I want to make a SharePoint List column show/hide based on 2 conditions with OR operator. I have tried the following formula variations and nothing is working. =IF(OR([$DocumentType]=='New...
- Mar 03, 2022
SOLUTION: After trying hours, figured out that following formula elements should be in small letters:
- if
- true
- false
The following formula works:
=if([$DocumentType]=='New' || [$ChangeinMetaData]=='Yes', 'true', 'false')
RehmanR
Mar 03, 2022Copper Contributor
SOLUTION: After trying hours, figured out that following formula elements should be in small letters:
- if
- true
- false
The following formula works:
=if([$DocumentType]=='New' || [$ChangeinMetaData]=='Yes', 'true', 'false')