Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

DISTINCTCOUNT values difference between AXIS visual and card visual

Hello, guys! I need some help over here, if you could so, I appreciate.   I'm using a DISTINCTCOUNT to get the distinct values from column A applying this measure to a Card, but when I apply to a ...
  • v-frfei-msft's avatar
    v-frfei-msft
    6 years ago

    Hi Anonymous ,

     

    Here we go.

    Measure 2 = 
    VAR s =
        MAX ( Planilha1[Situação] )
    VAR no =
        CALCULATETABLE (
            VALUES ( Planilha1[Ordens] ),
            FILTER ( ALL ( Planilha1 ), Planilha1[Situação] <> s )
        )
    RETURN
        IF (
            ISFILTERED ( Planilha1[Situação] ),
            CALCULATE (
                DISTINCTCOUNT ( Planilha1[Ordens] ),
                FILTER ( Planilha1, NOT ( Planilha1[Ordens] IN no ) )
            ),
            DISTINCTCOUNT ( Planilha1[Ordens] )
        )
    

     

    Pbix as attached.