Forum Discussion
Color a specific matrix cell value
- 2 years ago
measure :
if it is the last year, then your last month is december im assuming the logic.
you can write the fillowing measure :
colormeasure =
if ( tbl_name[ monthnb] = 12 && tbl_name[year] = year(today()) - 1 ) , "Blue" )
then add this measure to the condtional formatting : right click on the measure
select field value, then search for your measure .
let me know if this helps .
If my answer helped sort things out for you, i would appreciate a thumbs up π and mark it as the solution β
It makes a difference and might help someone else too. Thanks for spreading the good vibes! π€
measure :
if it is the last year, then your last month is december im assuming the logic.
you can write the fillowing measure :
colormeasure =
if ( tbl_name[ monthnb] = 12 && tbl_name[year] = year(today()) - 1 ) , "Blue" )
then add this measure to the condtional formatting : right click on the measure
select field value, then search for your measure .
let me know if this helps .
If my answer helped sort things out for you, i would appreciate a thumbs up π and mark it as the solution β
It makes a difference and might help someone else too. Thanks for spreading the good vibes! π€