Editable_If Admin if not use the conditions

I would like to put a constraint in Editable_if columns.What I want to achieve is.,it can be editable only if the userrole is “Admin”

Then if the user role is “User” editable only if the date is equal to today in [Date Out] column.

0 3 115
3 REPLIES 3

Aurelien
Google Developer Expert
Google Developer Expert

Hi @Eoj_VT

You may want to have a look to these documentation articles:

and set your expression here:

So, that:

would be:

OR(USERROLE()="Admin",
   AND(USERROLE()="User",
      [Date Out]=TODAY()
)
)

You’re the best! Thanks

You are welcome

Top Labels in this Space