Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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 the column "Total" and I only need the value according to the last date of each month.
For example:
For Tarragona I have 217 for December and 222, in this case according to the date I only need the 217 in mi table.
Can anybody help me?
thank you so much!
Solved! Go to Solution.
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:
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:
@cgil can you provide some sample data?
new measure = VAR _MaxDate=CALCULATE(MAX([date]),ALLSELECTED([Mes])) RETURN IF(MAX([date])=_MaxDate,SUM([Value]))
Hi! Thank you for your reply but it doesnt fit what I want...
This is my table:
It shows the same... 😥
Any suggestion?
Resumen = ADDCOLUMNS(SUMMARIZE(llamadas, LLAMADAS[Provincia],LLAMADAS[Fecha].[Mes],"Total",LASTNONBLANKVALUE(LLAMADAS[Fecha].[Date],SUM(LLAMADAS[Total])))
you may translate .[Date] into your language.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |