Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Comparing data using a filter and displaying the difference

Hi,   I have value type date and computer   Date Computer 2021-09 Computer 1 2021-09 Computer 12 2021-09 Computer 2 2021-09 Computer 3 2021-10 Computer 1 2021-10 ...
  • v-xulin-mstf's avatar
    5 years ago

    Hi Anonymous,

     

    Create two calculated table as:

    2021_9 = 
    CALCULATETABLE(
        'Table',
        MONTH('Table'[Date])=9
    )
    2021_10 = 
    CALCULATETABLE(
        'Table',
        MONTH('Table'[Date])=10
    )

    Try measure as:

    Measure = 
    IF(
        MAX('Table'[Computer]) in VALUES('2021_10'[Computer]) && MAX('Table'[Computer]) in VALUES('2021_9'[Computer]),
        1,
        0
    )

    Here is the output:

    The pbix is attached.

     

    If you still have some question, please don't hesitate to let me known.‌‌

     

    Best Regards,

    Link

     

    Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!