Forum Discussion

Ley022's avatar
Ley022
Frequent Visitor
5 years ago
Solved

dynamic graphic with calculated columns

Hi, I want to generate a dynamic graph that changes from one calculated column to another, based on a filter. An example of calculated columns: IN1, IN2, IN3, IN4.     I want to generate a ...
  • v-janeyg-msft's avatar
    5 years ago

    Hello, @Ley022

    It's a pleasure to answer for you.

    According to its description, I think you can create a table (enter data) with a single column that includes all calculated column name elements, and then create a measure used in the 'values' of the stacked column chart.

    Measure =
    SWITCH (
        TRUE (),
        SELECTEDVALUE ( 'Table (2)'[IN] ) = "IN1", MAX ( 'Table'[IN1] ),
        SELECTEDVALUE ( 'Table (2)'[IN] ) = "IN2", MAX ( 'Table'[IN2] ),
        SELECTEDVALUE ( 'Table (2)'[IN] ) = "IN3", MAX ( 'Table'[IN3] ),
        SELECTEDVALUE ( 'Table (2)'[IN] ) = "IN4", MAX ( 'Table'[IN4] ),
        SELECTEDVALUE ( 'Table (2)'[IN] ) = "IN5", MAX ( 'Table'[IN5] )
    )
    // max(your calculate column)  

    Like this:2.png3.png

    Here is my sample .pbix file. I hope it helps.

    If you do not solve your problem, please feel free to ask me.

    Best regards

    Janey Guo

    If this post helps,then consider Accepting it as the solution to help other members find it faster.