Forum Discussion
highlight weekends in matrix
- 6 years ago
Here is one way I found to work.
On your Date table, add a column with this expression
Day Color = IF(WEEKDAY('Date'[Date])=1, "Red")
Then, concatenate the expression in your measure that goes in the values area with & " "
Measure = SUM(Table[Column]) & " "
Then add conditional format to that measure in the matrix, choose Field Value, and your Date[Day Color] field (it will default to First aggregation).
Here is an example I what I saw when I did the above (note one value is blank but still show red).
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
v-lionel-msft hello Lionel,
Thank you for your reply. But as I described in my post. I need all the cells which are under the 'Sunday's have the red color. something like this :
so that we can see if we have any value on Sundays.
parry2k , mahoneypat any ideas in this matter?
- mahoneypat6 years ago
Microsoft Employee
Here is one way I found to work.
On your Date table, add a column with this expression
Day Color = IF(WEEKDAY('Date'[Date])=1, "Red")
Then, concatenate the expression in your measure that goes in the values area with & " "
Measure = SUM(Table[Column]) & " "
Then add conditional format to that measure in the matrix, choose Field Value, and your Date[Day Color] field (it will default to First aggregation).
Here is an example I what I saw when I did the above (note one value is blank but still show red).
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
- Anonymous6 years agoNot applicable
- mahoneypat6 years ago
Microsoft Employee
Measures can sit in any table, but it is not in same table. This simple model that I use when working on community solutions is described here.
The shown matrix uses the Date, Product, and Sales table from that model.
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat