Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
crolland
New Member

How to get the latest status of my project per year

Hello,

 

I have one table (EPIC_History) with the monthly updates of my projects per fiscal year. 

 

update on, project name, update, status, fiscal year

 

April 2021, Project A, update blabla, on going, FY 2021-2022

May 2021, Project A, another update, on going, FY 2021-2022

June 2021, Project A, another update 2, on going, FY 2021-2022

 

April 2022, Project A, another update, on going, FY 2022-2023

July 2022, Project A, another update, at risk, FY 2022-2023

September 2022, Project A, another update, blocked, FY 2022-2023

 

April 2023, Project A, another update, at risk, FY 2023-2024

 

I am looking for DAX request in order to get the latest status for each fiscal year : 

 

Project A, on going, FY 2021-2022

Project A, blocked, FY 2022-2023

Project A, at risk, FY 2023-2024

 

I tried : summarize, filter, max... no luck. Need your help.

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @crolland ;

You could create a measure by dax.

latest status = 
var _last=CALCULATE(MAX('Table'[update on]),ALLEXCEPT('Table','Table'[fiscal year]))
return CALCULATE(MAX('Table'[status]),FILTER('Table',[update on]=_last))

The final show:

vyalanwumsft_0-1669081540514.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
crolland
New Member

Thank you very much ! It worked perfectly. 

v-yalanwu-msft
Community Support
Community Support

Hi, @crolland ;

You could create a measure by dax.

latest status = 
var _last=CALCULATE(MAX('Table'[update on]),ALLEXCEPT('Table','Table'[fiscal year]))
return CALCULATE(MAX('Table'[status]),FILTER('Table',[update on]=_last))

The final show:

vyalanwumsft_0-1669081540514.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.