Been doing a Sharepoint list, for some documents to go in diffrent "states" by each member of our team it have gone through.
i have a button that should be displayed, if the current user is equal to the author.
CodePudding user response:
Change the visibility property as following(note the brackets between two conditions):
"=if((@me== [$Author.email] && [$Status]== 'Draft') || (@me== [$Author.email] && [$Status]== 'RedoDraft') , 'visible', 'hidden')"