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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

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, testing@test.com 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 = "testing@test.com"
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
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.