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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Jackbaz99
Helper I
Helper I

IF statement with custom dates

Hi all, my first post here so apologies if this is somewhere else but i cannot find ANYTHING to do with this.

 

Im trying to do a nested if statement with custom dates returning different values - the scenario is if the customer due date falls between for example 01/01/2019 and 01/09/2019 then the target is 0.75 if it falls between 02/09/2019 and 01/12/2019 then the target is 0.80 and so on so forth. im stuch below - dont think im too far away

 
I am getting a true/false data type with dates error.
 
Any help would be appreciated

 

Column = IF('Customer DSA'[Due Date].[Date] <= DATE(2019,1,1) >= DATE(2019,9,1),0,1)

 

2 ACCEPTED SOLUTIONS
Greg_Deckler
Community Champion
Community Champion

@Jackbaz99 - So your formula should be:

 

Column = IF('Customer DSA'[Due Date].[Date] <= DATE(2019,1,1) && 'Customer DSA'[Due Date].[Date] >= DATE(2019,9,1),0,1)

 

That said, instead of nested IF statements, try using SWITCH(TRUE()...) instead. Much better than nested IF statements.

 

Since you are new, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

harshnathani
Community Champion
Community Champion

Hi @Jackbaz99 ,

 

Apart from the above mentioned solution, you can use SWITCH

 

Column =
SWITCH (
    TRUE (),
    'Customer DSA'[Due Date].[Date]
        <= DATE ( 2019, 1, 1 )
        && 'Customer DSA'[Due Date].[Date]
            >= DATE ( 2019, 9, 1 ), 0.75,
    'Customer DSA'[Due Date].[Date]
        <= DATE ( 2019, 9, 2 )
        && 'Customer DSA'[Due Date].[Date]
            >= DATE ( 2019, 12, 1 ), 0.80
)

 

 

Regards,
Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

 

View solution in original post

4 REPLIES 4
harshnathani
Community Champion
Community Champion

Hi @Jackbaz99 ,

 

Apart from the above mentioned solution, you can use SWITCH

 

Column =
SWITCH (
    TRUE (),
    'Customer DSA'[Due Date].[Date]
        <= DATE ( 2019, 1, 1 )
        && 'Customer DSA'[Due Date].[Date]
            >= DATE ( 2019, 9, 1 ), 0.75,
    'Customer DSA'[Due Date].[Date]
        <= DATE ( 2019, 9, 2 )
        && 'Customer DSA'[Due Date].[Date]
            >= DATE ( 2019, 12, 1 ), 0.80
)

 

 

Regards,
Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

 

@harshnathani Hi

 

Im not getting any return for this function. Just blanks.

@harshnathani @Greg_Deckler  Thank you both! The switch function is a godsend 😁 much appreciated!

Greg_Deckler
Community Champion
Community Champion

@Jackbaz99 - So your formula should be:

 

Column = IF('Customer DSA'[Due Date].[Date] <= DATE(2019,1,1) && 'Customer DSA'[Due Date].[Date] >= DATE(2019,9,1),0,1)

 

That said, instead of nested IF statements, try using SWITCH(TRUE()...) instead. Much better than nested IF statements.

 

Since you are new, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.