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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
redgerly
New Member

DAX comparison operations ERROR when the data types are the same

I am having trouble with data types thats causing an error in a formula.  I consistently get this error "DAX comparison operations do not support comparing values of type Text with values of type Date. Consider using the VALUE or FORMAT function to convert one of the values."  YET my data types are seemingly correct.  

 

Here is my formula:

Facility = VAR StayDate = 'public alert'[alert_date]
Return
    CALCULATE(
        //Arbitrary tie-breaker
        FIRSTNONBLANK('public patient_stays_detailed_view'[admit_date],0),
        CALCULATETABLE(
            LASTNONBLANK('public patient_stays_detailed_view'[admit_date],0),
            'public patient_stays_detailed_view'[facility_name] <= StayDate))
 
My date values are admit_date and alert_date.   Here's how they look.  Also, in both instances, I've removed all null or blank values.  WHAT AM I MISSING HERE?  
redgerly_0-1704912218391.pngredgerly_1-1704912241095.png

 

  

 

 
 
 
 
1 REPLY 1
Greg_Deckler
Community Champion
Community Champion

@redgerly Seems like you are trying to determine if the facility_name (assuming this is text) is <= a date value, which is highly unlikely to work out or be meaningful in any way.

'public patient_stays_detailed_view'[facility_name] <= StayDate)



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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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