I have a excel sheet that gives me something like
Contrato Jan/2018 Fev/2018 Mar/2018
2010100 15.800,00 9.000,00 15.000,00
2010101 10.000,00 10.000,50 11.000,15
Soon after I did an unpivot of this data resulting in something like this
Contrato Jan/2018 Fev/2018 Mar/2018 Attribute Value
2010100 15.800,00 9.000,00 15.000,00 Jan/2018 15.800,00
2010100 15.800,00 9.000,00 15.000,00 Fev/2018 9.000,00
2010100 15.800,00 9.000,00 15.000,00 Mar/2018 15.000,00
2010101 10.000,00 10.000,50 11.000,15 Jan/2018 10.000,00
2010101 10.000,00 10.000,50 11.000,15 Fev/2018 11.000,15
2010101 10.000,00 10.000,50 11.000,15 Mar/2018 10.000,50
Soon after, I create a line chart pulling as data the "Attibute and" Value ", but only that the display order is in alphabetical order and wanted to put in the orders of the months, as Jan / 2018, Feb / 2018 and Mar / 2018
I've tried to go into modeling and sort by column but does not sort by month.