Forum Discussion
January is in the wrong place
- 6 years ago
Hi Gunglewack ,
Do you create a calendar table? If not, please create one using the formula below and then sort the "MonthName" column by the "Year & MonNum" column.
Calendar = VAR _calendar = CALENDAR ( "10/1/2019", "5/1/2020" ) RETURN ADDCOLUMNS ( _calendar, "Year & MonNum", YEAR ( [Date] ) & MONTH ( [Date] ), "MonthName", FORMAT ( [Date], "mmmm" ) )Hope this can help you.
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Gunglewack ,
Do you create a calendar table? If not, please create one using the formula below and then sort the "MonthName" column by the "Year & MonNum" column.
Calendar =
VAR _calendar =
CALENDAR ( "10/1/2019", "5/1/2020" )
RETURN
ADDCOLUMNS (
_calendar,
"Year & MonNum", YEAR ( [Date] ) & MONTH ( [Date] ),
"MonthName", FORMAT ( [Date], "mmmm" )
)
Hope this can help you.
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for that.
I'm using the web app, so can't add it in exactly that format, but added a constructed YY-MM column in my source data.