Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
obriaincian
Resolver I
Resolver I

Filter a table based on multiple values from another table

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, [email protected] can have multiple companies.

 

The error I'm getting is 

The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.

 

FilteredMasterTable = 
VAR SelectedEmail = "[email protected]"
VAR SelectedRoles = 
    CALCULATETABLE(
        VALUES('Roles Table'[Company]),
        'Roles Table'[Email] = SelectedEmail
    )
RETURN
    FILTER(
        Master,
        Master[Company]IN SelectedRoles
    )

 

2 REPLIES 2
v-zhangti
Community Support
Community Support

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.

obriaincian
Resolver I
Resolver I

Note: I want to implement this as Row Level Security but I am testing it in a measure first

 

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors