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

Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.

Reply
Anonymous
Not applicable

How to show prior entry when month missing

I am trying to create a columnd to show me prior month status but because my months have gaps in them I am getting blanks

 

I have the following data. The first 3 are in my dataset and I am trying to create the 4th

 

Report MonthCustomerStatusPrior Month Status
JanABCRed 
FebABCRedRed
MarchABCYellowRed
AprABCYellowYellow
MayABCGreenYellow
JanDEFRed 
FebDEFYellowRed
MayDEFGreenYellow
JanGHIRed 
MarchGHIYellowRed
MayGHIGreenYellow
1 ACCEPTED SOLUTION

@Anonymous 

Please try

Prior Month Status =
MAXX (
TOPN (
1,
FILTER (
CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[Customer] ) ),
'Table'[Month] < EARLIER ( 'Table'[Month] )
),
'Table'[Month]
),
'Table'[Status]
)

View solution in original post

4 REPLIES 4
tamerj1
Super User
Super User

Hi @Anonymous 

month is text or date data type?

Anonymous
Not applicable

it's date type

@Anonymous 

Please try

Prior Month Status =
MAXX (
TOPN (
1,
FILTER (
CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[Customer] ) ),
'Table'[Month] < EARLIER ( 'Table'[Month] )
),
'Table'[Month]
),
'Table'[Status]
)

Anonymous
Not applicable

omg this worked THANK YOU

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.