Sorting Month Names Chronologically in Microsoft Power BI

preview_player
Показать описание
Learn how to sort month names chronologically in Microsoft Power BI.

DAX to copy and paste:
Date =
ADDCOLUMNS (
CALENDAR (DATE(2000,1,1), DATE(2025,12,31)),
“DateAsInteger”, FORMAT ( [Date], “YYYYMMDD” ),
“Year”, YEAR ( [Date] ),
“Monthnumber”, FORMAT ( [Date], “MM” ),
“YearMonthnumber”, FORMAT ( [Date], “YYYY/MM” ),
“YearMonthShort”, FORMAT ( [Date], “YYYY/mmm” ),
“MonthNameShort”, FORMAT ( [Date], “mmm” ),
“MonthNameLong”, FORMAT ( [Date], “mmmm” ),
“DayOfWeekNumber”, WEEKDAY ( [Date] ),
“DayOfWeek”, FORMAT ( [Date], “dddd” ),
“DayOfWeekShort”, FORMAT ( [Date], “ddd” ),
“Quarter”, “Q” & FORMAT ( [Date], “Q” ),
“YearQuarter”, FORMAT ( [Date], “YYYY” ) & “/Q” & FORMAT ( [Date], “Q” )
)

PPM Works offers a full range of Project and Portfolio Management consulting services, all designed to help your company reach its potential. We are a Microsoft Gold Partner, specializing in Microsoft Project and Microsoft 365. Whether you’re looking for a small tweak or complete overhaul, we have you covered. Our services are available a la carte so you get precisely what you need.
Рекомендации по теме