Forum Discussion
how to change column into mixed data type
- Anonymous7 years ago
In general you should NEVER load date that have dual types, that being said you can do it by pressing the icon "1.2", change the type to be anything i.e. Text. Then you should see the following line in the formula bar
= Table.TransformColumnTypes(#"PrevStep",{{"Column Name", type text}})then just change the type text to type any
= Table.TransformColumnTypes(#"PrevStep",{{"Column Name", type any}})
In general you should NEVER load date that have dual types, that being said you can do it by pressing the icon "1.2", change the type to be anything i.e. Text. Then you should see the following line in the formula bar
= Table.TransformColumnTypes(#"PrevStep",{{"Column Name", type text}})
then just change the type text to type any
= Table.TransformColumnTypes(#"PrevStep",{{"Column Name", type any}})
Thanks!