Hide Action Button

I am having a table Event ,
I have created a Action button which add a new row to the another table Registration with below fields

I just want to hide the action button, once the user click button ,Action button should visible for other user
Any suggestion on expression

Set the action’s Only if this condition is true expression to:

NOT(IN([Email], Registration[Email]))

2 Likes

Working .But the action button ,its not visible for other user.

I’ve offered all I can given the very little information you’ve provided.

I just want to hide the action button for the particular event for the particular person
Other users should able to see the action button in the same event

I just want to hide the action button for the particular events for the particular person
Other users should able to see the action button in the same event.

You would need to record the data somewhere about who has clicked the button. And then reference that recorded data in the Actions only if… field.

I might suggest adding a new column to the table: [emails clicked]. Add to the action to set the value of this new column to:

[emails clicked] & “,” & USEREMAIL()

And set an only if… condition of:

NOT( CONTAINS( [emails clicked] , USEREMAIL() ) )

3 Likes