Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Recoba88
Helper III
Helper III

Change columns name

Hi,

 

When I try to get data through power query (from google sheets or excel file)

 

I get it by columns - and then ther is automatically change type activated (for example column with title "1")

 

#"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers",{{" 1 ", type any},....

 

If later I will change my name column in data file to another title then "1" it will break the connection. 

 

So how can I figure this problem?

 

Thanks !

1 ACCEPTED SOLUTION
MarcelBeug
Community Champion
Community Champion

Remove the #"Changed Type" step.

 

If you still need to type your data, then there are various ways to do it dynamically, depending on your specific situation and requirements.

Specializing in Power Query Formula Language (M)

View solution in original post

5 REPLIES 5
vannikannank
Frequent Visitor

Hi Recoba

 

Did you change the column name dynamically without visual break? if yes please let me know the steps.

 

 

Thanks

Vannikannan.k

MarcelBeug
Community Champion
Community Champion

Remove the #"Changed Type" step.

 

If you still need to type your data, then there are various ways to do it dynamically, depending on your specific situation and requirements.

Specializing in Power Query Formula Language (M)

Thanks,

if you still need to type your data, then there are various ways to do it dynamically, depending on your specific situation and requirements.

 

 

Can you tell me how or refer to specific link to learn about it?

 

 

 

A typical example is to create a list with column names and the required types (this is actually a list of lists) and use that as second argument to function Table.TransformColumnTypes.

 

In this example, Table1 has 3 columns with a whole number, text and date. The query will still run if column names are adjusted.

 

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    ColumnNames = Table.ColumnNames(Source),
    ColumnTypes = {Int64.Type, type text, type date},
    TransformSpecs = List.Zip({ColumnNames,ColumnTypes}),
    #"Changed Type" = Table.TransformColumnTypes(Source,TransformSpecs)
in
    #"Changed Type"

 

In the "hard coded" version you can also recognize the list of lists as second argument:

 

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"Text", type text}, {"Date", type date}})
in
    #"Changed Type"

 

Specializing in Power Query Formula Language (M)

Awesome

 

Thanks!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors