Forum Discussion
Conditional field as per option selected
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?
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.