Forum Discussion
Anonymous
6 years agoNot applicable
Matrix Visualization - hiding values in columns
Hello everyone, I showed my Capacity Report to my manager who is somewhat impressed, but feels that there is too much data appearing on the matrix visualization. She asked me if it is possible t...
- 6 years ago
Hi, Anonymous
Try mesure as below:
Measure Available hours1 = IF ( SELECTEDVALUE ( Table1[Resource Name] ) = "Project", SELECTEDVALUE ( Table1[Available Hours] ), BLANK () )Measure Available hours2 = IF ( ISINSCOPE ( Table1[Resource Name] ), [Measure Available hours1], SUM ( Table1[Available Hours] ) // you can change it as any value you want(sum,total,max..) )Then drag these fields into matrix values.
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. - 6 years ago
Hi , Anonymous
Of course.This function itself is to create a new measure to replace the original field.
Best Regards,
Community Support Team _ Eason
v-easonf-msft
6 years agoCommunity Support
Hi, Anonymous
Try mesure as below:
Measure Available hours1 =
IF (
SELECTEDVALUE ( Table1[Resource Name] ) = "Project",
SELECTEDVALUE ( Table1[Available Hours] ),
BLANK ()
)Measure Available hours2 =
IF (
ISINSCOPE ( Table1[Resource Name] ),
[Measure Available hours1],
SUM ( Table1[Available Hours] ) // you can change it as any value you want(sum,total,max..)
)Then drag these fields into matrix values.
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.