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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
DMB90
Helper I
Helper I

If Date from a Column is Between a Specific Date Range, Then Return A Value

Hi, I'm trying to create a DAX for this expression (examples below):

 

If [DATE] from a column falls between 3/1/24 and 2/28/25, then FY2024, if [DATE] from the same column falls between 3/1/23 and 2/29/24, then FY2023

1 ACCEPTED SOLUTION

Thanks for the reply from @nandic , allow me to provide additional information on your comments based on the user's data. 
Hi,@DMB90 

Regarding the issue you raised, my solution is as follows:

1.First I have created the following table and the column names and data are the data you have given:

vlinyulumsft_0-1715925297563.png

2. Below are the Calculated Columns I've created for your needs:

vlinyulumsft_1-1715925327283.png

date check = 
SWITCH(TRUE(),'Table'[1.Cteated Date]>=DATE(2024,3,1)&&'Table'[1.Cteated Date]<=DATE(2025,2,28),"FY2024",
'Table'[1.Cteated Date]>=DATE(2023,3,1)&&'Table'[1.Cteated Date]<=DATE(2024,2,29),"FY2023",
BLANK())

3.Here's my final result, which I hope meets your requirements.

vlinyulumsft_2-1715925362508.png

4.Here are some related documents to help you:

Tutorial: Create your own measures in Power BI Desktop - Power BI | Microsoft Learn

Tutorial: Create calculated columns in Power BI Desktop - Power BI | Microsoft Learn

Also, I've attached my pbix file so you have the option to get it in time if you need it.

Best Regards,

Leroy Lu

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

3 REPLIES 3
nandic
Super User
Super User

@DMB90 

Calculated column:

FiscalYear =
VAR CurrentDate = 'Calendar'[Date]
RETURN
    IF(
        AND(
            CurrentDate >= DATE(2024, 3, 1),
            CurrentDate <= DATE(2025, 2, 28)
        ),
        "FY2024",
        IF(
            AND(
                CurrentDate >= DATE(2023, 3, 1),
                CurrentDate <= DATE(2024, 2, 29)
            ),
            "FY2023",
            BLANK() // Return blank if date does not fall into specified ranges
        )
    )

This is my date column that I want to check against specified date ranges. I'm not sure how to check my date range against this date column below.

DMB90_0-1715304008752.png

 

Thanks for the reply from @nandic , allow me to provide additional information on your comments based on the user's data. 
Hi,@DMB90 

Regarding the issue you raised, my solution is as follows:

1.First I have created the following table and the column names and data are the data you have given:

vlinyulumsft_0-1715925297563.png

2. Below are the Calculated Columns I've created for your needs:

vlinyulumsft_1-1715925327283.png

date check = 
SWITCH(TRUE(),'Table'[1.Cteated Date]>=DATE(2024,3,1)&&'Table'[1.Cteated Date]<=DATE(2025,2,28),"FY2024",
'Table'[1.Cteated Date]>=DATE(2023,3,1)&&'Table'[1.Cteated Date]<=DATE(2024,2,29),"FY2023",
BLANK())

3.Here's my final result, which I hope meets your requirements.

vlinyulumsft_2-1715925362508.png

4.Here are some related documents to help you:

Tutorial: Create your own measures in Power BI Desktop - Power BI | Microsoft Learn

Tutorial: Create calculated columns in Power BI Desktop - Power BI | Microsoft Learn

Also, I've attached my pbix file so you have the option to get it in time if you need it.

Best Regards,

Leroy Lu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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