Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Slicer Filtering with Rule

  I have two different visuals on a page, one of them is a progress cloumn graph and other one is a gantt chart. There is also a slicer filtering these visual in terms of dicipline (disiplin). I wan...
  • MFelix's avatar
    7 years ago

     

    Hi Anonymous,

     

    First of all don't know if you already have it but you should create a dimension table with the Discipline and relate that table with the data table, then add the following measure:

     

    Total = 
    IF (
        DISTINCTCOUNT ( Discipline[Discipline] )
            = CALCULATE (
                DISTINCTCOUNT ( Discipline[Discipline] );
                ALL ( Discipline[Discipline] )
            );
        CALCULATE (
            SUM ( DisciplineValues[Values] );
            FILTER ( Discipline; Discipline[Discipline] = "General" )
        );
        SUM ( DisciplineValues[Values] )
    )

     

    The result is below:

     

     

     

    Be aware of this things:

    • The measure is calculating if you have the full selection of disciplines if you only select a few it will put the bar charts with those categories
    • Select all is the same as having no selection on the slicer (as you may know)
    • In the bar chart the Discipline should be taken out from your data table and not your dimension table
    • The slicer must be made from the dimension table.

    Check the PBIX file attach

     

    Regards,

    MFelix