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

See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap

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
May PBI 25 Carousel

Power BI Monthly Update - May 2025

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

May 2025 Monthly Update

Fabric Community Update - May 2025

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