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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Antmkjr
Post Patron
Post Patron

Check occurance of a value in previous month value

https://drive.google.com/file/d/14SNn2oaQ1m9H9hx1r0QCN0MDnCBei3Fo/view?usp=share_link

 

Antmkjr_0-1667475414728.png

In the above report, i need a measure where, IF Month LFL for any previous months is Non LFL , then the following months in the same year should also show Non LFL for that particular category

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @Antmkjr 
Please refer to attached file with the solution

1.png

Measure = 
VAR CurrentMonth = MAX ( 'Date'[MonthOfYear] )
VAR CurrentYear = MAX ( 'Date'[Year] )
VAR T1 = CALCULATETABLE ( SUMMARIZE ( Sheet1, 'Date'[Year], 'Date'[MonthOfYear] ), REMOVEFILTERS ( ) ) 
VAR T2 = FILTER ( T1, [MonthOfYear] <= CurrentMonth && [Year] = CurrentYear )
VAR T3 = 
    SELECTCOLUMNS ( 
        T2, 
        "@SPLY", 
        CALCULATE ( [Month LFL], FILTER ( T2, [MonthOfYear] = EARLIER ( [MonthOfYear] ) ), ALL ( 'Date' ) ) 
    )
VAR Result = IF ( "Non LFL" IN T3, "Non LFL", "LFL" ) 
RETURN
    Result

View solution in original post

1 REPLY 1
tamerj1
Super User
Super User

Hi @Antmkjr 
Please refer to attached file with the solution

1.png

Measure = 
VAR CurrentMonth = MAX ( 'Date'[MonthOfYear] )
VAR CurrentYear = MAX ( 'Date'[Year] )
VAR T1 = CALCULATETABLE ( SUMMARIZE ( Sheet1, 'Date'[Year], 'Date'[MonthOfYear] ), REMOVEFILTERS ( ) ) 
VAR T2 = FILTER ( T1, [MonthOfYear] <= CurrentMonth && [Year] = CurrentYear )
VAR T3 = 
    SELECTCOLUMNS ( 
        T2, 
        "@SPLY", 
        CALCULATE ( [Month LFL], FILTER ( T2, [MonthOfYear] = EARLIER ( [MonthOfYear] ) ), ALL ( 'Date' ) ) 
    )
VAR Result = IF ( "Non LFL" IN T3, "Non LFL", "LFL" ) 
RETURN
    Result

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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