Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
I have the below calculation that should take an email address, filter the roles table for that email. It should then filter the Master table Company column for the same companies as in the filtered roles table.
Note, testing@test.com can have multiple companies.
The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.
FilteredMasterTable =
VAR SelectedEmail = "testing@test.com"
VAR SelectedRoles =
CALCULATETABLE(
VALUES('Roles Table'[Company]),
'Roles Table'[Email] = SelectedEmail
)
RETURN
FILTER(
Master,
Master[Company]IN SelectedRoles
)
Hi, @obriaincian
Can you provide sample data for testing? Sensitive information can be removed in advance. What kind of expected results do you expect? You can also show it with pictures or Excel. I look forward to your response.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Note: I want to implement this as Row Level Security but I am testing it in a measure first
User | Count |
---|---|
88 | |
74 | |
69 | |
59 | |
56 |
User | Count |
---|---|
40 | |
38 | |
34 | |
32 | |
28 |