Forum Discussion
Justair07
Resolver I
7 years agoFORMAT for Month not Correct
Hi everyone, I've done this a dozen times but I am pulling my hair out trying to understand why this is being so difficult. I have a simple Dates Table created from DAX: and I have a custo...
- 7 years ago
Justair07 Can't see any issue with your MonthName DAX formula... Did you tried this way ?
Test240DateGen = CALENDAR("2018-01-01","2018-12-31")Then New Columns as
MonthNum = FORMAT([Date],"m") MonthName = FORMAT([Date],"mmm")
PattemManohar
Community Champion
7 years agoJustair07 Can't see any issue with your MonthName DAX formula... Did you tried this way ?
Test240DateGen = CALENDAR("2018-01-01","2018-12-31")
Then New Columns as
MonthNum = FORMAT([Date],"m") MonthName = FORMAT([Date],"mmm")
Justair07
Resolver I
7 years agoPattemManohar That did the trick! So it was an issue with the way the DAX created my dates. Thank you so much!