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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

direct query from db2 for items at powerbi table only

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

POWERBI.png

1 ACCEPTED SOLUTION
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous

 

It seems there's no better way to do that with odbc. I would suggest you import the DB2 first:

1.png

Then you may use Merge queries for the Query1 and table2 in query editor. Then expend table2 and filter the pno columns<>null.

1.png

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

 

 

 

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous

 

It seems there's no better way to do that with odbc. I would suggest you import the DB2 first:

1.png

Then you may use Merge queries for the Query1 and table2 in query editor. Then expend table2 and filter the pno columns<>null.

1.png

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

 

 

 

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors