Forum Discussion
locking down editable sections on a form but not hiding
- Jul 22, 2022
childishbambino If you are using person or group (people picker) column for selecting the person name, you can set DisplayMode property of data card to:
If(ThisItem.Person2.Email = User().Email, DisplayMode.Edit, DisplayMode.View)If you are using display name of users in drop down, you can compare it with User().FullName. But dropdown choices has to match exactly with the display names of users.
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.
childishbambino If you are using person or group (people picker) column for selecting the person name, you can set DisplayMode property of data card to:
If(ThisItem.Person2.Email = User().Email, DisplayMode.Edit, DisplayMode.View)If you are using display name of users in drop down, you can compare it with User().FullName. But dropdown choices has to match exactly with the display names of users.
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.
- childishbambinoJul 23, 2022Copper Contributorthanks , would you happen to know why my navigate isnt working? i have one button, but based off that button the id value and pass it to a variable on that button selected, set variable this item.id
then i have an if statement with variable= 1 , 2,3, navigate to form 1, navigate to form 2, etc.
but it doesnt work for me- ganeshsanapJul 25, 2022MVP
childishbambino Can you show us the formula you are using correctly? Add complete formula while replying to this thread.
It will be easier to answer your query precisely by looking at the formula.
Please consider giving a Like if my post helped you in any way.