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
lastnn30
Post Patron
Post Patron

Datevalue() function to return only date without time

Hi

I have a column in a table which has dates formatted as text (moved to the left hand side). I used Datevalue to convert them to dates. It did work but each date has time as well. I wonder if I can fornce Datevalue() to return only date. Thank you very much.

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

try to wrap with FORMAT,

= FORMAT(DATEVALUE(), "YYYY/MM/DD")

View solution in original post

2 REPLIES 2
FreemanZ
Super User
Super User

try to wrap with FORMAT,

= FORMAT(DATEVALUE(), "YYYY/MM/DD")

Greg_Deckler
Community Champion
Community Champion

@lastnn30 Try:

Column = 
  VAR __Space = SEARCH(" ",[DateTime])
  VAR __Date = LEFT([DateTime],__Space)
  VAR __Result = DATEVALUE(__Date)
RETURN
  __Result


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.

Top Solution Authors