Forum Discussion
Matrix Visualization - hiding values in columns
- 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
You can use ISINSCOPE() to achieve this.
For example:
Count of Product Transactions =
COUNTX('SalesLT SalesOrderDetail','SalesLT SalesOrderDetail'[SalesOrderID])
Rollup =
IF(ISINSCOPE('SalesLT Product'[Name]),BLANK(),[Count of Product Transactions])
- Anonymous6 years agoNot applicable
Hello,
Thank you for the inscope() funtion suggestion. I think it is a possible solution, however my available hours value is being calculated as a measure instead of a column. Do you know if this function works on measures?
ixdutt
- v-easonf-msft6 years agoCommunity Support
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-msft6 years agoCommunity Support
Hi , Anonymous
Could you please tell me whether your problem has been solved?
For now, there is no content of description in the thread. If you still need help, please share more details to us.Best Regards,
Community Support Team _ Eason