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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Rena
Resolver II
Resolver II

If statement not working

I have a measure that finds the start period (12 months prior to latest date).  Which is returning a value of 53 (we are on month 66 right now).

 

Start Period =
   LOOKUPVALUE('Fiscal Map'[Period #],
    'Fiscal Map'[Date],
    MAX(
        'LEDS - SQL'[Fiscal_Week])
        )-13
 
Then I am doing a simple IF to include all periods that are greater than the start period
 
12 Months = IF([Period #]>[Start Period],"Include","Exclude")
 
The problems is - everything is "Include" (months 1 - 66) instead of just months 54-66. 
 
[Period #] is a whole number and [Start Period] is a whole number.
 
1 ACCEPTED SOLUTION
Rena
Resolver II
Resolver II

No clue why this works, but if I switch the formula to this it works just fine...

 

12 Months =

VAR StartPeriod =
    LOOKUPVALUE('Fiscal Map'[Period #],
    'Fiscal Map'[Date],
    MAX(
        'LEDS - SQL'[Fiscal_Week])
        )

RETURN
    IF([Period #]>(StartPeriod-13) && [Period #]<StartPeriod,
    "Include",
    "Exclude"
    )
 
 

View solution in original post

1 REPLY 1
Rena
Resolver II
Resolver II

No clue why this works, but if I switch the formula to this it works just fine...

 

12 Months =

VAR StartPeriod =
    LOOKUPVALUE('Fiscal Map'[Period #],
    'Fiscal Map'[Date],
    MAX(
        'LEDS - SQL'[Fiscal_Week])
        )

RETURN
    IF([Period #]>(StartPeriod-13) && [Period #]<StartPeriod,
    "Include",
    "Exclude"
    )
 
 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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