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]))
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() ) )
User | Count |
---|---|
18 | |
10 | |
8 | |
6 | |
5 |