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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
konradjonsson
Helper II
Helper II

Filter table based on another table

Hi.

 

I need help with a solution to filter a large transaction table. I want to this already during load in Power Query. Not sure it is possible.

 

I have a table with transactions. It has 50+ million rows in it.

Transaction table: InvoiceDetails

 

I only want to select the rows where a certain category of products are included.

 

The category information is not included in the transaction table – it is part of a Product table.

Product table: DimProduct

 

Product table, category field: ProdCodeLvl1

Product table, category field value: ‘3’

 

Field existing in both tables: WKProduct

 

 

let

    Source1 = Sql.Databases("server"),

    BIDW1 = Source1{[Name="BIDW"]}[Data],

    DimProduct1 = BIDW1{[Schema="DW", Item="DimProduct"]}[Data],

    Custom1 = DimProduct1,

    #"Filtered Rows" = Table.SelectRows(Custom1, each ([ProductCodeLvl1] = "3")),

    #"Removed Other Columns1" = Table.SelectColumns(#"Filtered Rows",{"WKProduct", "ProductLvl1Name"}),

    Source2 = Sql.Databases("server"),

    BIDW2 = Source2{[Name="BIDW"]}[Data],

    InvoiceDetails = BIDW2{[Schema="DW", Item=" InvoiceDetails"]}[Data],

    Custom2 = InvoiceDetails,

    #"Filtered Rows2" = Table.SelectRows(Custom2, each Table.Contains(#"Removed Other Columns1","WKProduct"))

in

    #"Filtered Rows2"

 

 

This setup is resulting in an error message.

“Failed to save modifications to the server. Error returned: ‘OLD DB or ODBC error: [Expression.Error] We cannot convert the value “WKProduct” to type Record.. ‘.”

1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

Syntax for Table.Contains

https://docs.microsoft.com/en-us/powerquery-m/table-contains

 

As to me, another solution way much better is to execute such a join query at database side,

Source = Sql.Databases("server"),
Dataset = Value.NativeQuery(Source, "SELECT * FROM DimProduct1 AS Prdt INNER JOIN InvoiceDetails AS Inv ON Prdt.WKProduct = Inv.WKProduct WHERE ProductCodeLvl1 = '3'")

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

4 REPLIES 4
konradjonsson
Helper II
Helper II

The solution to this was to use a native query. I got assistance from colleagues that are better skilled with such code. In the end, the code was as follows:

let
Source = Sql.Database("server", "dw", [Query="select #(lf) f.*#(lf)from InvoiceDetails f with (nolock)#(lf)join DW.DimProduct p with (nolock) on p.WKProduct = f.WKProduct#(lf)where #(lf) p.ProductCodeLvl1 = '3'#(lf)"])
in
Source

watkinnc
Super User
Super User

I would change the Table.Contains to List.Contains, like:

#"Filltered Rows2" = Table.SelectRows(Custom2, each List.Contains(List.Buffer(#"Removed Other Columns1"[WKProduct]),[ColumnNameInCustom2ThatYouAreFiltering]))

This way you are filtering Custom2 table with a buffered list of the values from the WKProduct column of your filtered table. And it'll fold.

--Nate


I’m usually answering from my phone, which means the results are visualized only in my mind. You’ll need to use my answer to know that it works—but it will work!!
konradjonsson
Helper II
Helper II

Thanks. I am getting help now from more skilled colleagues to do the native query. Once confirmed I have achieved what I wanted - I will accept this as a solution.

CNENFRNL
Community Champion
Community Champion

Syntax for Table.Contains

https://docs.microsoft.com/en-us/powerquery-m/table-contains

 

As to me, another solution way much better is to execute such a join query at database side,

Source = Sql.Databases("server"),
Dataset = Value.NativeQuery(Source, "SELECT * FROM DimProduct1 AS Prdt INNER JOIN InvoiceDetails AS Inv ON Prdt.WKProduct = Inv.WKProduct WHERE ProductCodeLvl1 = '3'")

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors