G_S
December 29, 2020, 4:09pm
1
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
Steve
December 29, 2020, 4:53pm
2
Set the action’s Only if this condition is true expression to:
NOT(IN([Email], Registration[Email]))
2 Likes
G_S
December 29, 2020, 5:01pm
3
Working .But the action button ,its not visible for other user.
Steve
December 29, 2020, 5:04pm
4
I’ve offered all I can given the very little information you’ve provided.
G_S
December 29, 2020, 5:13pm
5
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
G_S
December 29, 2020, 5:18pm
6
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