Forum Discussion
amtanner
10 years agoRegular Visitor
Date Separation - separating dates from timestamps
The data that I am using is importing as the following form "MM:DD:YYYY 00:00:00 __". (For example, "10/1/2015 12:00:00 AM".) I am not sure why it is doing this because the source of the data is simp...
- 10 years ago
Edit your query, select your column, go to the Transform tab and change the "Data Type" to Date instead of Date/Time.
v-sihou-msft
10 years agoMicrosoft Employee
Or you can use Format() function to remove the timestamp part.
Column = FORMAT(Table[date],"MM-DD-YYYY")
Regards,
- Anonymous6 years agoNot applicable
Thank you! This is exactly what I was looking for and is simple.