I have a table with registered values every day, I need a dax measure to get only the last value of the las day each month.
To see only this
How can I solve it?
You can use this dax query to create a result table with last value of each month
Table = SUMMARIZECOLUMNS(Sheet1[Date], "last_value", LASTNONBLANK(Sheet1[Amount], 1))
See the screenshot with test data for reference:
Original table:
Let me know if this is what you are looking for and if this solution works.