Remove field from sharepoint list form

Copper Contributor

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 idea to hide status when i have created the ticket (because only users will create requests).

 

I've tried to implement the conditional formula in the form:

 

=if([$Author] == @me, 'true', 'false')

 

But didn't work as i expect. Can someone help me to hide the status field from the user creator? 

2 Replies

@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.

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.