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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
TIGER8855
Helper I
Helper I

exclude text values when using DATEDIFF

I'm using DATEDIFF to find the number of days between today and dates in column however the column also has some values that are text therefore the the calculation doesn't work. 

Can anyone advise how values with text can be exluded so that the Date difference will work on the values that are dates?

 

Column = DATEDIFF(Table1[Expiry],today(),DAY)

1 ACCEPTED SOLUTION

Hey @TIGER8855

you can do this with two steps in Power Query, create a new column with this code
try Date.FromText ([maybe a Date] )
otherwise null
image.png

Then change the data type to Date
This result might look like this:
image.png

Hopefully this provides what you are looking for.

Regards,
Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

4 REPLIES 4
TomMartens
Super User
Super User

Hey @TIGER8855 ,

 

this will not work because the DATEDIFF function requires the argument to be either of data type DATE or DATETIME: DATEDIFF – DAX Guide

Regards,
Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Thanks @TomMartens . Do you know what is the easiest way to create a new column with just the dates and if there is text, the cell in the new column is blank? This way I can use the DATEDIFF on the new column with only the dates.

Hey @TIGER8855

you can do this with two steps in Power Query, create a new column with this code
try Date.FromText ([maybe a Date] )
otherwise null
image.png

Then change the data type to Date
This result might look like this:
image.png

Hopefully this provides what you are looking for.

Regards,
Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Thanks @TomMartens. That works. My original DATEDIFF can now be used on this new column.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors