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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
TR405
New Member

Date is greater than if formula

Hi, 

 

I am trying to filter out rows, that have

a) the Clearance date value not blank

b) the Clearance date must be after 2022-09

 

I tried using this formula:

Clearance date Filter = if(ISBLANK(QAR_db_31_10[Clearance date]),"DO NOT DISPLAY", if(QAR_db_31_10[Clearance date]>2022-9, "DISPLAY", "DO NOT DISPLAY"))
 
While it seems to be able to filter out the blank cells, it does not work for the date after 2022-09.
 
Could anyone please help me out?
 
Thanks a lot.
1 ACCEPTED SOLUTION
v-binbinyu-msft
Community Support
Community Support

Hi @TR405 ,

Please try below steps:

1. below is my tets table

Table:

vbinbinyumsft_0-1669020122634.png

2. create a measure with below dax formula

Measure =
VAR cur_date =
    SELECTEDVALUE ( 'Table'[Date] )
VAR cur_year =
    YEAR ( cur_date )
VAR cur_month =
    MONTH ( cur_date )
RETURN
    IF (
        ISBLANK ( cur_date )
            || AND ( cur_year = 2022, cur_month <= 9 ),
        "Do not display",
        "Display"
    )

3. add a table visual with field and measure

vbinbinyumsft_1-1669020236229.png

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

2 REPLIES 2
v-binbinyu-msft
Community Support
Community Support

Hi @TR405 ,

Please try below steps:

1. below is my tets table

Table:

vbinbinyumsft_0-1669020122634.png

2. create a measure with below dax formula

Measure =
VAR cur_date =
    SELECTEDVALUE ( 'Table'[Date] )
VAR cur_year =
    YEAR ( cur_date )
VAR cur_month =
    MONTH ( cur_date )
RETURN
    IF (
        ISBLANK ( cur_date )
            || AND ( cur_year = 2022, cur_month <= 9 ),
        "Do not display",
        "Display"
    )

3. add a table visual with field and measure

vbinbinyumsft_1-1669020236229.png

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.

amitchandak
Super User
Super User

@TR405 ,

 

Clearance date Filter = if(ISBLANK(QAR_db_31_10[Clearance date]),"DO NOT DISPLAY",

if(QAR_db_31_10[Clearance date]> date(2022,09,01) , "DISPLAY", "DO NOT DISPLAY"))

 

You can use date(2022,09,30)  if needed

 

Also consider switch(True() ,

 

Switch-Case statement of #PowerBI: https://www.youtube.com/watch?v=gelJWktlR80&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=56

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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