Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Matrix visual: How to conditionally format the column header, Values font size, or Values border?

I have a matrix control with 12 columns, Jan thru Dec. I have several measures as rows. I would like to indicate the current month in some way such as making all the cells in that column bold, or mak...
  • menglaro78's avatar
    3 years ago

    HI Anonymous ,

    I suggest to create a measure for Check current Month like this:

    CheckMonth = IF(MONTH(TODAY()) = SELECTEDVALUE('Table'[Mese]), "Red", "Black")
     
    Apply conditional formatting for value of Matrix
     
    Marco
     

    Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!