Forum Discussion
koorosh
4 years agoPost Partisan
YearMonth Column
Hello All, Why I can not create the YearMonth column in the linked file through the following DAX : Date = FORMAT(DATE('Table'[YERR],'Table'[Month],1),"MM-YYYY") How I can create it? Regards h...
- 4 years ago
You will need to use following
= FORMAT(DATE(YEAR('Calendar'[Year]),'Calendar'[Month Number],1),"MM-YYYY")In your YEAR column, you have used STARTOFYEAR which gives a date. But in DATE, it needs a number for YEAR. YEAR('Calendar'[Year]) provides that year number.
Second problem was that you were using month name as second argument for Date whereas it needed a number 1-12 which should have been provided through 'Calendar'[Month Number].
PaulDBrown
4 years agoCommunity Champion
Try:
MonthYear = FORMAT(Table[Month], "00") & "-" & Table[Year]
- koorosh4 years agoPost Partisan
Where is the problem with the following, please?
MonthYear = FORMAT(DATE('Calendar'[YEAR],'Calendar'[Month Name],1),"MM-YYYY")