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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
nhodges
Helper I
Helper I

Formula for Date Range filter

Hi trying to make a date filter so that it will show "Iteration 1" if the date range is from 03/23/2023 to 06/23/2023. And will show "Iteration 2" for anything after 06/23/2023. My formula is not working. 

 

Iteration Launch = IF('12_PM_REPORT_PBI'[EVENT_DATE]>=03/23/2023,IF('12_PM_REPORT_PBI'[EVENT_DATE]<=06/23/2023,"Iteration 1", "Iteration 2"),"")
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @nhodges ,

Please create a measure with below dax formula:

Measure =
VAR min_date =
    MIN ( 'Table'[Date] )
VAR max_date =
    MAX ( 'Table'[Date] )
VAR result =
    IF (
        min_date >= DATE ( 2023, 03, 23 )
            && max_date <= DATE ( 2023, 06, 23 ),
        "Iteration 1",
        "Iteration 2"
    )
RETURN
    result

Animation18.gif

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @nhodges ,

Please create a measure with below dax formula:

Measure =
VAR min_date =
    MIN ( 'Table'[Date] )
VAR max_date =
    MAX ( 'Table'[Date] )
VAR result =
    IF (
        min_date >= DATE ( 2023, 03, 23 )
            && max_date <= DATE ( 2023, 06, 23 ),
        "Iteration 1",
        "Iteration 2"
    )
RETURN
    result

Animation18.gif

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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