Forum Discussion
Help with values in a Matrix
- 1 year ago
This has not resolved the issue - as I needed to do a filter within that. I have gone down a different path to address as this was getting a bit too complicated for my experience and what we were trying to achieve.
Thanks Pankaj - I could not add the 2 new measures as rows, It lets me add them as values.
When I added them as values it included all the rows for all projects in the system. Even where all 3 columns (Task hours, worked hours and remaining hours are 0.
Hello AmandaHore
You can try this measure it will exclude the zero
TaskHoursFiltered =
IF(SUM('Table'[Task Hours]) > 0 ||
SUM('Table'[Worked Hours]) > 0 ||
SUM('Table'[Remaining Hours]) > 0,
SUM('Table'[Task Hours]))
Thanks,
Pankaj
If this solution helps, please accept it and give a kudos, it would be greatly appreciated.