Hey @OsmandFernando
Direct sorting based on Month name is not doable directly. As a workaround to this, you can set the configuration as:
App -> OnStart -> ClearCollect(MonthName,{Month:"January",value:1},{Month:"February",value:2},{Month:"March",value:3},{Month:"April",value:4},{Month:"May",value:5},{Month:"June",value:6},{Month:"July",value:7},{Month:"August",value:8},{Month:"September",value:9},{Month:"October",value:10},{Month:"November",value:11},{Month:"December",value:12})
Note: Make sure that you run OnStart again so that the collection is populated in your current edit session.
Now, Chart -> Items ->
Sort(AddColumns(CollectionName,"MonthOrder",LookUp(MonthName,Month = SalesMonth).value),MonthOrder,Ascending)
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!