Forum Discussion

prabhatnath's avatar
prabhatnath
Advocate III
3 years ago
Solved

Represent Dynamic Table Visual based on Slicer Selection

Hi Friends, I have a requirement where I need to represent data in the below format so what is the best visual I can use and how can I achieve the same? Columns 1 and 3 are Fixed headers while the ...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi prabhatnath ,

    I updated my sample pbix file(see the attachment), please check if that is what you want.

    1. Create a dimension table as below

    2. Create a measure as below

    Measure = 
    SWITCH (
        SELECTEDVALUE ( 'Table'[Type] ),
        "User Stories", [Count of User Stories],
        "Story Points", [Sum of Story Points],
        "Completed Work", [Sum of Completed Work],
        "Remaining Work", [Sum of Remaining Work]
    )

    Best Regards