Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Comparing Two Different Datasets for missing values

Hi,   I have two different datasets/tables in Power BI. One that is a Power BI dataset and the other is a Google BigQuery direct query.   Lets call them table_a and table_b. I would like to compa...
  • tamerj1's avatar
    4 years ago

    Hi Anonymous 
    You can create a new calculated table 

    Missing From b =
    EXCEPT ( VALUES ( Table_a[Column A] ), VALUES ( Table_b[Column A] ) )

    Or you can create a measure, for example for a card visual 

    Missing From b =
    CONCATENATEX (
        EXCEPT ( VALUES ( Table_a[Column A] ), VALUES ( Table_b[Column A] ) ),
        [Column A],
        UNICHAR ( 10 )
    )