Forum Discussion
prabhatnath
3 years agoAdvocate III
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 ...
- Anonymous3 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
prabhatnath
3 years agoAdvocate III
Thank you for your help on this.
Actually, I am able to get a table as normal with columns as headers and rows as values, but I was looking to represent the table as below:
Where Columns 1 and 3 are Headers/Fixed string and Columns 2 and 4 are based on Slicer selection..
| Selected Sprint | Sprint S103 | Original Estimate | 289 |
| User Stories | 39 | Completed Work | 69 |
| Story Points | 117 | Remaining | 210 |
Sorry if my earlier question was not clear.
Thanks,
Prabhat
Anonymous
3 years agoNot applicable
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