Announcements
This site is in read only until July 22 as we migrate to a new platform; refer to this community post for more details.

Only allow admin users to add data in a specific table

Hello there,
Does anyone know how to only allow certain users to add data to a specific table?

I have a table call receipts and only want the user with the role Admin to create receipts for instance, but still want the user with role user to see the data.

Also, can the user with role user ask for permission to the user with role admin in order to add the receipt they just created to the table? sort of like an acceptance or decline option. If the admin user accept the data, data gets input, if not, it gets returned to the user to review the error.

Solved Solved
0 5 1,004
1 ACCEPTED SOLUTION

Marc, I was able to create the review process using this as a starting point.

Created a data base of employee and managers. In the employee database, needed to specify who their manager is and then:

in the edit selection of the status I put this formula.
if(
and(
[status]= under review , [assign to].[manager].[email]=useremail()), true,

false

)

Thank you for all your help. Cheers!

View solution in original post

5 REPLIES 5
Top Labels in this Space