Forum Discussion
dchenhero
Feb 13, 2025Copper Contributor
Multiple Conditional Formatting for SharePoint Column
Hello! I'm trying to make a conditional format where a field will only show up if one of these items Item 1 Item 2 Item 3 Item 4 Currently this is my formula but I get the error "Enter a v...
- Feb 13, 2025
Hi dchenhero
you can use a column validation like this to implement with multiple conditionals. My column calls ChoiceColumn and have the values Blue or Red:
=if([$ChoiceColumn] == 'Blue' || [$ChoiceColumn]=='Red', true, false)
Best, Dave
DaveMehr365
Feb 13, 2025MVP
Hi dchenhero
you can use a column validation like this to implement with multiple conditionals. My column calls ChoiceColumn and have the values Blue or Red:
=if([$ChoiceColumn] == 'Blue' || [$ChoiceColumn]=='Red', true, false)
Best, Dave