Forum Discussion
Show/Hide Field with conditional formula or column formatting not working
- Apr 17, 2024
normabeez
If you are trying to hide the comments field from list form based on single selection choice column values, you can use the conditional formula in this format:=if([$ChoiceColumnInternalName]=='Unknown', 'true', 'false')Where [$ChoiceColumnInternalName] is an internal name of your column in SharePoint list in this format: [$InternalNameOfColumn]. You can get the internal name of your SharePoint list columns by following this article: How to find the Internal name of columns in SharePoint Online?
You have to use $ only once before column name in the conditional formula.
Documentation: Show or hide columns in a SharePoint list or library form
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
normabeez
If you are trying to hide the comments field from list form based on single selection choice column values, you can use the conditional formula in this format:
=if([$ChoiceColumnInternalName]=='Unknown', 'true', 'false')
Where [$ChoiceColumnInternalName] is an internal name of your column in SharePoint list in this format: [$InternalNameOfColumn]. You can get the internal name of your SharePoint list columns by following this article: How to find the Internal name of columns in SharePoint Online?
You have to use $ only once before column name in the conditional formula.
Documentation: Show or hide columns in a SharePoint list or library form
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.