Forum Discussion

cosminc's avatar
cosminc
Icon for Post Partisan rankPost Partisan
7 years ago
Solved

DAX expression - ignore dimension from graph

Hi, i don't know how to obtain a graph like this:   Label          Result B                count all Label=A && Value=1 in this case result is 1 C                count all Label=A && Value=1 in ...
  • dax's avatar
    7 years ago

    Hi cosmic,

    I am not clear about your requirement , did you mean that you won't want to show "A" in axis, and count label="A" and value =1  for B,C,D, right?

    If so, you could try to use below measure to see whether it work or not(table 2 is for slicer which have only column have values A,B,C,D)

    Measure =
    VAR s =
        SELECTEDVALUE ( Table2[Column1] )
    RETURN
        IF (
            s IN VALUES ( graph[Label] ),
            BLANK (),
            CALCULATE (
                COUNT ( graph[Label] ),
                FILTER ( ALL ( graph ), graph[Label] = "A" && graph[Value] = 1 )
            )
        )

    You need to set filter on measure to "is not blank"

    If this is not what you want, please inform me your expecting output  by image or drawings


    Best Regards,
    Zoe Zhi

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.