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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
gvg
Post Prodigy
Post Prodigy

List rows that are missing in another table

Hi experts,

I am looking for a way to list all rows of one table, that are missing in another table. Specifically I need to check one column in TableA if the value is missing in a column in TableB. If the value is missing I need to return the whole row of TableA. Here are my tables. I need to check if ProductID is missing in TableB. If it is missing - return that row which has missing ProductID.

 

TableA                                        TableB                                                ResultTable

ProductID  SalesAmount            ProductID    Price                               ProductID    SalesAmount            

123           100                            121             10                                  124             200

124           200                            122              50                                 125             150 

125           150                            123              20

 

How can I do this? Been trying to do it with EXCEPT, but it does not accept columns as parameters.

 

 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi @gvg

 

Add a New Table from Modelling Tab

Missing_IDs =
EXCEPT ( VALUES ( TableA[ProductID] ), VALUES ( TableB[ ProductID] ) )

Then Add a New Column in this New Table as follows

Sales =
CALCULATE (
    VALUES ( TableA[ SalesAmount] ),
    FILTER ( TableA, Missing_IDs[ProductID] = TableA[ProductID] )
)


This will give you desired table


Regards
Zubair

Please try my custom visuals

View solution in original post

1 REPLY 1
Zubair_Muhammad
Community Champion
Community Champion

Hi @gvg

 

Add a New Table from Modelling Tab

Missing_IDs =
EXCEPT ( VALUES ( TableA[ProductID] ), VALUES ( TableB[ ProductID] ) )

Then Add a New Column in this New Table as follows

Sales =
CALCULATE (
    VALUES ( TableA[ SalesAmount] ),
    FILTER ( TableA, Missing_IDs[ProductID] = TableA[ProductID] )
)


This will give you desired table


Regards
Zubair

Please try my custom visuals

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.