The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.
Solved! Go to Solution.
try to wrap with FORMAT,
= FORMAT(DATEVALUE(), "YYYY/MM/DD")
@lastnn30 Try:
Column =
VAR __Space = SEARCH(" ",[DateTime])
VAR __Date = LEFT([DateTime],__Space)
VAR __Result = DATEVALUE(__Date)
RETURN
__Result
User | Count |
---|---|
86 | |
84 | |
34 | |
34 | |
34 |
User | Count |
---|---|
94 | |
79 | |
63 | |
55 | |
51 |