Forum Discussion

RehmanR's avatar
RehmanR
Copper Contributor
Mar 03, 2022
Solved

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...
  • RehmanR's avatar
    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')

     

Resources