Forum Discussion
GentleGrid
2 years agoNew Member
Putting column data in rows for table
I have a dim table with columns and values like this: I am trying to get a visualization table that looks like this: When the user selects a project with the slicer, the table should...
- 2 years ago
here is a workaround for you
create a new table
column 1 sort by sort column
then create a measure
Measure =SWITCH(SELECTEDVALUE('Table (2)'[Column1]),"Project",max('Table'[name]),"Size",max('Table'[size]),"Owner",max('Table'[owner]),"Weight",max('Table'[weight]),"Dimension",max('Table'[dimensions]))pls see the attachment below
ryan_mayu
2 years agoSuper User
here is a workaround for you
create a new table
column 1 sort by sort column
then create a measure
Measure =
SWITCH(SELECTEDVALUE('Table (2)'[Column1]),"Project",max('Table'[name]),"Size",max('Table'[size]),"Owner",max('Table'[owner]),"Weight",max('Table'[weight]),"Dimension",max('Table'[dimensions]))
pls see the attachment below
- GentleGrid2 years agoNew Member
That worked, thanks a lot!
- ryan_mayu2 years agoSuper User
you are welcome