Hi, my app requires users to login using emai...

Hi, my app requires users to login using email. All tables are using filtering as [Email]=USEREMAIL(). As an admin, how can I set the permission so that all user will be able to see and edit the data that I put in any of those tables? tq

0 8 433
8 REPLIES 8

OR([Email]=USEREMAIL(),[Email]=โ€œYourEmailAddressโ€)

Thanks @Aleksi_Alkio Translate

You should be able to use this format as wellโ€ฆ

IN([Email],{USEREMAIL(),YourEmailAddress})

Tq.

Using the syntax, all users can see and

edit the data. Is it possible to make the data duplicated to the userโ€™s own after they edit it? and the original data (which is admin data) is still there for everyone to edit and to own later.

Itโ€™s not a good idea to copy your data. It will duplicate your data size then.

If you need to show the data but only admin is able to modify that data, you could control the access mode from the table definition. Is that doable?

Yes that will do as well. Tq for the reminder too.

Top Labels in this Space