Forum Discussion
Chrisjr
2 years agoHelper IV
Changing columns types except selected ones
Hello All, I have the following table: Brand Category March April May AB DOP 500 750 807 AC PDO 200 850 890 AD OOB 150 970 750 AA DOP 680 160 690 I am...
- 2 years ago
= Table.TransformColumnTypes(#"End stage 3",
List.Transform(
List.RemoveFirstN(
Table.ColumnNames(#"End stage 3"),
2
),
each {_, Int64.Type}
))
Chrisjr
2 years agoHelper IV
Super, many thanks wdx223_Daniel .
What was my mistake?
Chrisjr
2 years agoHelper IV
I see you replaced the source with the previous step.