cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Murali777
Helper III
Helper III

End of year December month or latest month data in Dax

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.

 

Murali777_0-1656484882883.png

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Murali777 ,

 

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

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Murali777 ,

 

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.

Murali777
Helper III
Helper III

Hi @Jihwan_Kim@amitchandak 

 

Pls help me on this.

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors