Forum Discussion
Problem with sorting 19 months chart
- 9 years ago
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.
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.
Hello Eric_Zhang
Thank you for helping me out.
I've created 3 new columns in my data.
MonthYearVolumeNew = DATE(YEAR('Volumes'[FUNDED_DATE]),MONTH('Volumes'[FUNDED_DATE]),1)
MonthYearNew = DATE(YEAR('Renewals'[Date]),MONTH('Renewals'[Date]),1)
MonthYearRetetntionNew = DATE(YEAR('Terminations'[COMPLETIONDATE]),MONTH('Terminations'[COMPLETIONDATE]),1)
How I include them now to my Data Table 24 months?
This is my current layout. Are you suggesting to replace with new columns or just add them there for sort?
Date Table 24 months =
FILTER (
DISTINCT (
UNION ( VALUES ( Renewals[MonthYear] ), VALUES ( Terminations[MonthYear Retention] ),VALUES(Volumes[MonthYearVolumes] ),VALUES(Terminations[MonthYear Retention breakdown]))
),
ISBLANK ( [MonthYear] ) = FALSE ()
)
- AndrejZitnay9 years agoPost Patron