Forum Discussion
Chris Cundy
Feb 11, 2022Brass Contributor
[Resolved] Flow button visibility based on choice values of another column
Hello, I'm trying to show a flow button in one of my columns only if the choice value of another column is equal to either Failed OR No. If the choice value is equal to Yes or In progress then th...
- Feb 11, 2022I've solved this using the following code:
"visibility": "=if([$SentToCx] == 'Failed','visible',if([$SentToCx] == 'No','visible','hidden')"
Chris Cundy
Feb 11, 2022Brass Contributor
I've solved this using the following code:
"visibility": "=if([$SentToCx] == 'Failed','visible',if([$SentToCx] == 'No','visible','hidden')"
"visibility": "=if([$SentToCx] == 'Failed','visible',if([$SentToCx] == 'No','visible','hidden')"
- mherman284Mar 30, 2022Copper Contributor
Chris Cundy in the style property
"style": {"border": "none","background-color": "transparent","cursor": "pointer","visibility": "=if([$Title] == '5','hidden','visible')"},