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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

Getting last date value of the quarter

FY-Quarters       QuantityQuarters FYFYLast date of the quarter
Q2-202254                   2                                   FY22     30/09/2021     
Q3-2022763FY2231/12/2021
Q4-202284FY2231/03/2022
Q1-2023 1FY2330/06/2022
Q2-2023 2FY2330/09/2022
Q3-2023 3FY2331/12/2022
Q4-2023 4FY2328/02/2023

 

I want to get the last date of the quarter where the last value of Quantity is falling in. For example, in my sample data above, I need to get 31/03/2022. 

 

Note: 

 

Quantity is a measure:  

 

Quantity = SUMX(TABLE,TABLE[demand])

 

 

FY Quarters, Quarters FY, FY and Last date of the quarter columns are coming from a Date table.

How can I do this please?

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I tried to create a sample data like below.

Please check the below picture and the attached pbix file.

 

Picture1.png

 

Last value last date of quarter: =
VAR lastvalue =
LASTNONBLANK ( 'Calendar'[Date], [Quantity:] )
RETURN
CALCULATE ( MAX ( 'Calendar'[End of Quarter] ), 'Calendar'[Date] = lastvalue )

 

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi,

I tried to create a sample data like below.

Please check the below picture and the attached pbix file.

 

Picture1.png

 

Last value last date of quarter: =
VAR lastvalue =
LASTNONBLANK ( 'Calendar'[Date], [Quantity:] )
RETURN
CALCULATE ( MAX ( 'Calendar'[End of Quarter] ), 'Calendar'[Date] = lastvalue )

 

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.
amitchandak
Super User
Super User

@Anonymous , Try like

calculate(lastnonblankvalues(Date[Date], sum(Table[Demand])), filter(allselected(Table), Table[Qtr year] =max(Table[Qtr year])) )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 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.

Top Solution Authors
Top Kudoed Authors