Forum Discussion
jpcarpanezi
Jun 01, 2022Copper Contributor
Remove field from sharepoint list form
I'm creating a custom IT Ticket System using sharepoint list. I have a column called status, and i want only administrators to modify then. I searched for solutions but i can't find. So i have the id...
ganeshsanap
Jun 02, 2022MVP
jpcarpanezi Try using below formula. Hope it works for you else you have to customize the list form using Power Apps to show/hide the fields:
=if([$Author.email] == @me, 'true', 'false')
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.
- jpcarpaneziJun 02, 2022Copper Contributor
Didn't work, is there any way to avoid to edit self ticket status, without PowerApps? I wan't just SharePoint admnistrators to edit the items.