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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Dan27
Regular Visitor

Comparing two dates when one field is text and the other a date

Hello

 

I'm hoping someone can help. In my data I've got two different fields. An opened date and a closed date. My opened date always contains an date so the format is date. The closed date doesn't always contain a closed date so may sometimes contain "NULL".

 

This field is then formatted as text and when I try to work out the difference between the 2 dates I get an error.

 

As this is the way the dat pulls through from the source data I'd ideally not like to have to replace blanks etc.. within PowerBI but put it in the formula.

 

I want to write =IF(opened_date)=(closed_date),1,0)

 

Please help

 

Thanks

4 REPLIES 4
v-micsh-msft
Microsoft Employee
Microsoft Employee

For the NUll, we have a function IsBlank() could be used.

You could first check if the closed date is blank first.

The formula should be changed as below:

IF(Or(!(opened_date)=(closed_date), IsBlank(closed_date)),0,1)

Regards,

Michael

Thanks Michael, however when I try this I still get the error below

 

The syntax for '!' is incorrect. (DAX(IF(Or(!(opened_date)=(closed_date), IsBlank(closed_date)),0,1))).

My bad.

 

Try the following:

IF(Or(not((opened_date)=(closed_date)), IsBlank(closed_date)),0,1)

Regards,

Michael

Thanks Michael. That cleared that error but I still get the following:

 

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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