The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.
@Anonymous 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
@Anonymous 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