Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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