Forum Discussion

AndrejZitnay's avatar
AndrejZitnay
Post Patron
9 years ago
Solved

Problem with sorting 19 months chart

Hello all,   I have 3 data sets.   Renewals, & Volumes.   I need to have chart with 19 months hence I have below new columns for visual.   MonthYear = FORMAT(Renewals[Date],"mmm")&"-"&FORMAT(...
  • Eric_Zhang's avatar
    9 years ago

    AndrejZitnay

    You can create MonthYear as date instead

     

     

    MonthYear = DATE(YEAR('Renewals'[Date]),MONTH('Renewals'[Date]),1)

    And then in the table 'Date Table 24 months', create a calculated colume formated as MonthYear was and sort with the new MonthYear column.