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
nmbl
Frequent Visitor

DAX command with multiple conditions for new column

Hi,

 

I am trying to create a column with the requirement. I want to filter out the rows where Date1<Date 2 only when Date1 has Data

If Date1 is blank  and if Date1>Date2 then "True" else "False".

 

Getting error "DAX comparison operations do not support comparing values of type Date with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values".

 

I have tried the same logic with whole number instead of True and false still getting the same error.

 

 

 

3 REPLIES 3
v-chenwuz-msft
Community Support
Community Support

Hi @nmbl ,

 

Please check whether the type of date1 or date2 is the same. 

vchenwuzmsft_1-1656473133511.png

Best Regards

Community Support Team _ chenwu zhu

 

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

@nmbl , Try

In power query

if Date1 = null and Date1>Date2 then 1 else 0

 

in DAX

if(isblank([Date1]) && Date1>Date2 , true(), false())

Thank you for the response, I have applied 

Column 2 =

IF(

    'Lead'[Date1]="",

    "",

    IF(

        'Lead'[Date1] < 'Lead'[Date2],

        "0",

        "1"

    )

)

Getting Error "DAX comparison operations do not support comparing values of type Date with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values".

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.

Top Solution Authors