When data is entered with an e-mail address, I want only that e-mail address to see the data entry. how can I do it.
1 Like
Follow this steps:
- Add column in you table name [user_email], and you can give it any name you want example [email].
- after that go to Data>Slices use this Expression
CONTAINS(USEREMAIL(), [email])
- From UX Chose your view what you want, from data use your slice with the Expression
1 Like
thank you
Steve Coile via AppSheet Creator Community <appsheet@discoursemail.com>, 18 Şub 2021 Per, 19:43 tarihinde şunu yazdı:
1 Like
Instead of using CONTAINS()
- which is not the most efficient of formulas - use the following:
UserEmail() = [Email]
- This will be much faster to process.
You can learn more about this from the following post
3 Likes