Edit behaviour condition

Hi,

I want my user to be able to edit only in current date. And admin anytime. If there is any such function then please tell me. 

Solved Solved
0 5 193
1 ACCEPTED SOLUTION

You can try below.

Set a condition similar to this

OR(
 USERROLE() = "Admin",
 [your date column] = TODAY()
)

in the table's Edit action's Behavior -> Only if...

TeeSee1_0-1659416286754.png

 

View solution in original post

5 REPLIES 5

You can try below.

Set a condition similar to this

OR(
 USERROLE() = "Admin",
 [your date column] = TODAY()
)

in the table's Edit action's Behavior -> Only if...

TeeSee1_0-1659416286754.png

 

Hi @TeeSee1 I need a help from you. I want that if the date column matches the Today(), then the user can edit it. And even if the date is equal to the Today () or less than or greater than, the admin can edit. 

With the formula I indicated, it should already work as you just described.

What is not working?


@TeeSee1 wrote:

USERROLE() = "Admin",


How will this function know who is the admin? 

 

Read this and related help docs 

or you can implement your own permission scheme similar to the one in this article  and change the expression as appropriate.

Top Labels in this Space