Forum Discussion
drivero
3 years agoHelper I
Sort list in Tabular Editor - Measure
Hello,
I have a measure with contains a list of values for each month:
VAR septiembre = CALCULATE(
[KPI_general],
filter( ALL('DWH DimDate'), 'DWH DimDate'[Month_Name_Short] = "Sep" &&'DWH DimDate'[Year]=selectedvalue('DWH DimDate'[Year]))
)
VAR octubre = CALCULATE(
[KPI_general],
filter( ALL('DWH DimDate'), 'DWH DimDate'[Month_Name_Short] = "Oct" &&'DWH DimDate'[Year]=selectedvalue('DWH DimDate'[Year]))
)
var _list = {enero, febrero, marzo, abril, mayo, junio, julio, agosto, septiembre, octubre}
How i can sort the _list from Max to Min value?
I would like to stablish values from 1 to 12, from low to high.
thank you
No RepliesBe the first to reply