CumpleRequisitos =
SUMMARIZE (weatherausarreglao
, weatherausarreglao[Location] -- Columna por la cual agrupar (GROUP BY)
, "Max_Temp", AVERAGE(weatherausarreglao[MaxTemp])
, "Min_Temp", AVERAGE(weatherausarreglao[MinTemp]) -- Expresiones agregadas
)
This is my code am reading the documentation and i cant find how to fix the problem :c
I tried to make a function in dax which returns a “table” with a group by in location and the other column a AVERAGE of temp
New contributor
kekkotwo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.