Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello
I am loading a source and the dates appear as DD/MM/YYYY 00:00:00.
I then run the following:
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Complete Date", type date},...
Then, I also need to choose dd/MM/yyyy in the Modelling section to make the dates appear as dd/mm/yyyy in the dashboard table.
However, when I extract in csv, they appear as DD/MM/YYYY 00:00:00
Is there a way to fix that?
Thanks!
Hi @Anonymous
What is in the CSV? If it's loading dd/mm/yyyy 00:00:00 into PQ then that is the data in the CSV?
Even after you do transformations in PQ to get rid of the time component, when the date is loaded into the model, a time component is added to the data because the model only understands a datetime data type. It doesn't have separate date and time data types.
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!
@Anonymous , In Case your system date is US then it will not detect Uk format correctly, refer to this setting
or create date like this
new date =
var _pos = search("/",[col],,0)
return
date(right([date],4), mid([date],_pos+1,2), left([date],_pos-1))
@amitchandak sorry, it's not about US/UK formatting, it's about puting 00:00:00 at the end of each date in the csv. Any idea?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.