Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Dax Comparing Two Columns From Different Tables Returning Incorrect Result

Hi, I have this dax function that is returning incorrect result for Feb 2023 when counting the number of barcodes that are not present in table 2 when comparing to table 1. Appreciate any help please...
  • tamerj1's avatar
    3 years ago

    Anonymous 
    Is this what you're looking for?

    Count of Missing Barcodes = 
    COUNTROWS ( 
        EXCEPT ( 
            VALUES ( 'DistProfile v1-3'[Barcode] ),
            CALCULATETABLE ( 
                VALUES ( 'DASHBOARD_RESULTS_HIST (2)'[BARCODE] ), 
                ALLEXCEPT ( AcceptanceCalendar, AcceptanceCalendar[Year] ) 
            )
        )
    )