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
varelapablo90
Helper II
Helper II

IF between DATEs return a TEXT values, how?

Hello community

 

I am having the below issue:

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 want to create a new column that checks if something (Clearing Date) happened between a period of 2 dates (Start reporting & End Reporting), in case of True return a text column with the responsible HUB and if false just type "Non Scope"

 

HUB_Scope =
IF (
    T_[Clearing Date]
        >= RELATED ( T_Mapping[Start Reporting] ) & T_[Clearing Date]
        <= RELATED ( T__Mapping[End Reporting] ),
    RELATED ( T_Mapping[HUB_SCOPE] ),
    "NON SCOPE"
)

 

Clearing Date. Start Reporting and End Reporting are Dates but HUB_Scope isnt.

 

How can I can I make work the above formula ??

 

Thanks

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

You're using & which is the concatenation operator, you need to use && which is logical AND.

HUB_Scope =
IF (
    T_[Clearing Date] >= RELATED ( T_Mapping[Start Reporting] )
        && T_[Clearing Date] <= RELATED ( T__Mapping[End Reporting] ),
    RELATED ( T_Mapping[HUB_SCOPE] ),
    "NON SCOPE"
)

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

You're using & which is the concatenation operator, you need to use && which is logical AND.

HUB_Scope =
IF (
    T_[Clearing Date] >= RELATED ( T_Mapping[Start Reporting] )
        && T_[Clearing Date] <= RELATED ( T__Mapping[End Reporting] ),
    RELATED ( T_Mapping[HUB_SCOPE] ),
    "NON SCOPE"
)

Oh my... thank you very much 😊

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