Hide Action Button

G_S
Bronze 3
Bronze 3

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
3X_5_0_50be901a408bcd118aa042f2761026e3de0cf590.png
I just want to hide the action button, once the user click button ,Action button should visible for other user
Any suggestion on expression

0 6 1,453
6 REPLIES 6

Steve
Platinum 5
Platinum 5

Set the actionโ€™s Only if this condition is true expression to:

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

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() ) )

Top Labels in this Space