Forum Discussion
Conditional field as per option selected
Melow28 Use formula like:
=IF([Budget Shift Needed]="Yes",IF(OR(ISBLANK([Euro Value]),ISBLANK([Build up location]),ISBLANK([FTE Equivalent])),FALSE,TRUE),TRUE)
For conditionally hiding fields from list form, check this documentation: Show or hide columns in a SharePoint list or library form
Note: Showing/hiding conditional formulas works with internal name of SharePoint list columns and not display name.
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.
ganeshsanap it works thanks for the formula . This is the other one I mentioned if Budget Shift needed selected as "No" then Euro Value, FTE and Build up location is hidden. Would you know how to enter correct formula?
- ganeshsanapMay 06, 2024MVP
Melow28 You have to use formula like:
=if([$BudgetShiftNeeded] == 'Yes', 'true', 'false')Where [$BudgetShiftNeeded] 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?
Note: if/true/false should be in small letters and use single quote around true/false as given in above formula.
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.