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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
BeginnerBI
Helper I
Helper I

balance from previous quarter

Please I truly need your help.  I am trying to get the value from the previous quarter.

 

I only have one table, and my only date is quarters. I attached a picture to see if I can explain myself.

 

I will give you kudos all the compliments but please help me on this. Greatly appreciated. ExampleExample

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

@BeginnerBI 

Please try

Prev. Quarter =
CALCULATE (
SUM ( 'Table'[Column] ),
'Table'[Date] = EOMONTH ( MAX ( 'Table'[Date] ), -3 ),
ALL ( 'Table'[Date] )
)

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

@BeginnerBI 

Please try

Prev. Quarter =
CALCULATE (
SUM ( 'Table'[Column] ),
'Table'[Date] = EOMONTH ( MAX ( 'Table'[Date] ), -3 ),
ALL ( 'Table'[Date] )
)

Thank you so much!

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors