Hi,
I want to change all column types from text to currency.type except the column with the name "Date". The Column "Date" is the first column.
The idea is
Table.TransformColumnTypes(#"Neu angeordnete Spalten",List.Transform(List.Skip(Table.ColumnNames(#"Neu angeordnete Spalten"), [Date] ), each {_, Int64.Type}))
Thanks in advantage.
Julian
Solved! Go to Solution.
@Juleeees Use this:
let
Source = .....,
ColumnTypes =
List.Transform (
Table.ColumnNames ( Source ),
each
if _ = "Date"
then { _, type date }
else { _, Currency.Type }
),
ChangeType = Table.TransformColumnTypes ( RemovedColumns, ColumnTypes )
in
ChangeType
@Juleeees Use this:
let
Source = .....,
ColumnTypes =
List.Transform (
Table.ColumnNames ( Source ),
each
if _ = "Date"
then { _, type date }
else { _, Currency.Type }
),
ChangeType = Table.TransformColumnTypes ( RemovedColumns, ColumnTypes )
in
ChangeType
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.