I have a list of users where I would like to provide access to the Project records only to the project users base don their login.
If they are part of the project then it is expected to show only the project records
Can you provide a bit more info like the table structures? The answer is likely to be a slice or security filter using an IN() expression but we won't know for sure until we see how users are linked to projects.
The survey table has Team Name, Survey details, Survey User Email ID
Team Table has Team Name and member name, Member Email ID
When users access the Survey then i would I]like to show the records of their team they belong
Try the following for a slice of the Survey table
IN(
[Team Name],
SELECT(
Team[Team Name],
[Member Email ID] = USEREMAIL()
)
)
Thanks for sharing however help me how I can proceed without a hard coding team name in the filter. It supposes to check the user's email and if he/she belongs to the team then it shows only the team records.
User | Count |
---|---|
14 | |
11 | |
9 | |
7 | |
4 |