Forum Discussion

Rocky_Brown's avatar
Rocky_Brown
Helper I
4 years ago
Solved

Matrix Display

I have a matrix that compares Month over Month/Year over Year.

 

                   Jan       Feb     March      April     May   June     July    Aug    Sep    Oct    Nov   Dec 

2021           50         50       50           50         50        50        50      50      50      50      50     50

2022           75          75      75           75         75         75       75      75   

 

I would like to display only data from the prior year taht matches the month for the current year.  

 

                   Jan       Feb     March      April     May   June     July    Aug     

2021           50         50       50           50         50        50        50      50      

2022           75          75      75           75         75         75       75      75 

 

Is there a way this can be achieved?

2 Replies

  • Rocky_Brown , Create a measure and use in visual

     

    if(Month(Max(Date[Date])) > Month(Today()) , blank(), [Measure])

     

    • Rocky_Brown's avatar
      Rocky_Brown
      Helper I

      I am now having difficulty though with displaying the total for the previous year in my matrix.  Also, the grand total is caluclating the grand total for ALL of 2021 and current 2022.

      Example:

                   

                         Jan       Feb     March      April     May   June     July    Aug    TOTAL 

      2021           50         50       50           50         50        50        50      50      

      2022           75          75      75           75         75         75       75      75     600

      Grand Total                                                                                               1150  (s/b 1000)

       

      Any suggestions?

       

      Thank you,