Forum Discussion
cgil
Advocate I
4 years agoLast value in a month
Hi all! I need some help. I have 3 columns in a summarize table (Provincia, Mes(month of the date of the main table, Total). For each Mes(it is the month of a Date) I have sevaral values for th...
- 4 years ago
Hi all! In the end I solved it using Power M Query, I created a table with this 3 columns I need, then I sort them by the date and I add an index.
After that I used this formula in DAX:
if(COUNT(Consulta1[Fecha]) = 1, SUM(Consulta1[Total]), CALCULATE(SUM(Consulta1[Total]), FILTER(Consulta1, Consulta1[Índice] = max(Consulta1[Índice] ))))THanks for your help!
wdx223_Daniel
Community Champion
4 years agonew measure = VAR _MaxDate=CALCULATE(MAX([date]),ALLSELECTED([Mes])) RETURN IF(MAX([date])=_MaxDate,SUM([Value]))
cgil
Advocate I
4 years agoHi! Thank you for your reply but it doesnt fit what I want...
This is my table:
Resumen = SUMMARIZE(llamadas, LLAMADAS[Provincia],LLAMADAS[Fecha].[Mes],LLAMADAS[Total])
I only look at month because I have values for each week and I only want the different ones.
So I get the table of the question where you can see sevaral values for Tarragona in december.
After applying your measure:
It shows the same... 😥
Any suggestion?
- wdx223_Daniel4 years ago
Community Champion
Resumen = ADDCOLUMNS(SUMMARIZE(llamadas, LLAMADAS[Provincia],LLAMADAS[Fecha].[Mes],"Total",LASTNONBLANKVALUE(LLAMADAS[Fecha].[Date],SUM(LLAMADAS[Total])))
you may translate .[Date] into your language.