Forum Discussion
Change date format in dataset table
- 5 years ago
Hi, AFra
Please try follow steps:
1. Select all fields in the table in the "Model view" (select a field first,then ctrl+A to select all fields)
2.Change the data type and format as follows:
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi AFra ,
yes this is possible in the advanced editor.
First specify the columns you want to change the data like:
custom1 = List.Skip(Table.ColumnNames(Source),10), --> this is if you want to select column 10 onwards.
Then you can change the type of all the slected columns in custom1 by:
changetype = Table.TransformColumnTypes(Source,List.Transform(Custom1, each {_,type date}))
after "type" you can enter the date time you want.