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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Yiyi_1989
Helper I
Helper I

The column cannot be pushed to the remote data source and cannot be used

Hello, 

 

I created a table and gained a list of user_id of internal users. Then I tried to use this list to create a new column in my main table by matching the user_id with the list of user_id of internal users. However, I got the error message that "The column cannot be pushed to the remote data source and cannot be used in this scenario". Can some one help? Thank you so much in advance! 

 

The DAX code of the table expression which gained  the list of user_id of internal users: 

 

internal user = SELECTCOLUMNS (
    SUMMARIZE (
        CALCULATETABLE (
            'Main table',
            'Another table'[Type] = "Internal"
        ),
        'Main table'[user_id]
    ),
    "user_id", 'Main table'[user_id]
)

 

 

 I tried to create a new column in my main table by using the values from tne internal user table but got the error messages mentioned above: 

 

User Type =
    SWITCH(
        TRUE(),
       CONTAINS('internal user',
       'internal user'[user_id],
       'Main Table'[user_Id]),
       "Internal users","Other Users"
        )

 

1 REPLY 1
AnthonyGenovese
Resolver III
Resolver III

Personally, I would do all of this in Power Query. Create a new query for what you are looking for, then join that query to get your new column.

 

If this post was helpful, please kudos or accept the answer as a solution.
~ Anthony Genovese
Need more PBI help? PM me for affordable, dedicated training or consultant recomendations!

 

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.