Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
65 | |
60 | |
47 | |
33 | |
32 |
User | Count |
---|---|
86 | |
75 | |
56 | |
50 | |
45 |