Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have powerbi table, I want to get some figures of this items in table from DB2 table with odbc.
I dont want to import all table to powerbi and make join.
I want select data of items only exist at Powerbi table
Solved! Go to Solution.
Hi @Anonymous
It seems there's no better way to do that with odbc. I would suggest you import the DB2 first:
Then you may use Merge queries for the Query1 and table2 in query editor. Then expend table2 and filter the pno columns<>null.
let
Source = Table.NestedJoin(Query1,{"item number"},Table2,{"pno"},"Table2",JoinKind.LeftOuter),
#"Expanded Table2" = Table.ExpandTableColumn(Source, "Table2", {"pno"}, {"Table2.pno"}),
#"Filtered Rows" = Table.SelectRows(#"Expanded Table2", each ([Table2.pno] <> null))
in
#"Filtered Rows"
Regards,
Cherie
Hi @Anonymous
It seems there's no better way to do that with odbc. I would suggest you import the DB2 first:
Then you may use Merge queries for the Query1 and table2 in query editor. Then expend table2 and filter the pno columns<>null.
let
Source = Table.NestedJoin(Query1,{"item number"},Table2,{"pno"},"Table2",JoinKind.LeftOuter),
#"Expanded Table2" = Table.ExpandTableColumn(Source, "Table2", {"pno"}, {"Table2.pno"}),
#"Filtered Rows" = Table.SelectRows(#"Expanded Table2", each ([Table2.pno] <> null))
in
#"Filtered Rows"
Regards,
Cherie
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.