Hi,
I need pick past year december Amounts and current year latest month amount value by using dax measure. Please find the screenshot below. I need dax measure for Result column.
Solved! Go to Solution.
Have year column or use date table and have year there
Year = year([date])
A measure like
Calculate( lastnonblankvalue(Table[Date]), Sum(Table[Amount]) , Allexcept(Table, Table[Year]))
check if needed https://youtu.be/yPQ9UV37LOU
Have year column or use date table and have year there
Year = year([date])
A measure like
Calculate( lastnonblankvalue(Table[Date]), Sum(Table[Amount]) , Allexcept(Table, Table[Year]))
check if needed https://youtu.be/yPQ9UV37LOU
Hi Amit,
Thank you for the code. it works fine and the video reference also very helpful to learn new things. Rock it.
User | Count |
---|---|
135 | |
87 | |
64 | |
57 | |
57 |
User | Count |
---|---|
212 | |
109 | |
88 | |
82 | |
76 |