Forum Discussion

srajeshnkl's avatar
srajeshnkl
Regular Visitor
9 years ago
Solved

Power BI : Rank based on date Month wise

Hi Folks,   I have a table with below columns,  (Represents data of idea implementation)   S.No Name Idea Name Implemented Date   The data is for whole year. I want to give Rank to the perso...
  • Phil_Seamark's avatar
    Phil_Seamark
    9 years ago

    Hi srajeshnkl

     

    You could try adding the following two calcuated columns

     

    MonthID = FORMAT('Table3'[Implemented date],"YYYYMM")
    Month = FORMAT(DATE(
                YEAR('Table3'[Implemented date]),
                MONTH('Table3'[Implemented date]),
                1),"MMM YY")

    Make sure you hide MonthID and set Month to be sorted by MonthID

     

    Then just drag the new Month column to the Column of a Matrix

     

     

     

     

  • v-ljerr-msft's avatar
    v-ljerr-msft
    9 years ago

    Hi srajeshnkl,

     

    Have you tried the solution provided by Phil_Seamark above? Does it work in your scenario? If it works, could you accept it as solution to close this thread?

     

    If you still have any question on this issue, feel free to post here. :smileyhappy:

     

    Regards