Forum Discussion

ksivaganesh99's avatar
ksivaganesh99
Helper II
6 years ago
Solved

Display data in a table visual using two linked tables

  Hi all, I have two tables linked by a linkedID. Below are the two tables. Table1: ID Status Type State Suggestion Owner LinkedID 123 New High High Avoid Thomas Edison 1 124...
  • Icey's avatar
    Icey
    6 years ago

    Hi ksivaganesh99 ,

     

    How about this:

     

    1. Create a [State Measure] like so:

    State Measure =
    VAR Previous_ =
        CALCULATE (
            MAX ( Table1[State] ),
            FILTER ( ALLSELECTED ( Table2 ), Table2[Title] < MAX ( Table2[Title] ) )
        )
    RETURN
        IF ( Previous_ = MAX ( Table1[State] ), BLANK (), MAX ( Table1[State] ) )
    

     

    2. Change [Measure] like so:

    Measure = 
    SWITCH (
        [State Measure],
        "High", "red",
        "Medium", "orange",
        "Low", "blue"
    )

     

    3. Replace [State] column with [State Measure] in the Matrix visual.

     

    4. Set conditional formatting.

     

     

    BTW, .pbix file attached.

     

     

    Best Regards,

    Icey

     

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