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
pect
Helper I
Helper I

Table transformation

Hello everybody,

 

I would like to transform the following table:

 

ContracteTipus contracteContractació any 2017Adjudicat any 2017Contractació any 2018Adjudicat any 2018
1A1000200040002500
2B5600240035005500

 

Into the following:

 

Contracte

Tipus contracte

Estat

Any

Import

1

A

Contractació

2017

1000

1

A

Adjudicat

2017

2000

1

A

Contractació

2018

4000

1

A

Adjudicat

2018

2500

2

B

Contractació

2017

5600

2

B

Adjudicat

2017

2400

2

B

Contractació

2018

3500

2

B

Adjudicat

2018

5500

 

Could anyone give me a hand please?

 

Thank you very much in advance!

1 ACCEPTED SOLUTION
MarcelBeug
Community Champion
Community Champion

Select the first 2 columns, unpivot other columns.

Adjust the generated code with regard to the names of the new columns.

Split the Estat column with custom delimiter " any ".
Adjust both lines of the generated code with regard to the names of the new columns.

 

 

let
    Source = Table3,
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Contracte", "Tipus contracte"}, "Estat", "Import"),
    #"Split Column by Delimiter" = Table.SplitColumn(#"Unpivoted Other Columns", "Estat", Splitter.SplitTextByDelimiter(" any ", QuoteStyle.Csv), {"Estat", "Any"}),
    #"Changed Type" = Table.TransformColumnTypes(#"Split Column by Delimiter",{{"Estat", type text}, {"Any", Int64.Type}})
in
    #"Changed Type"

 

Specializing in Power Query Formula Language (M)

View solution in original post

2 REPLIES 2
MarcelBeug
Community Champion
Community Champion

Select the first 2 columns, unpivot other columns.

Adjust the generated code with regard to the names of the new columns.

Split the Estat column with custom delimiter " any ".
Adjust both lines of the generated code with regard to the names of the new columns.

 

 

let
    Source = Table3,
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Contracte", "Tipus contracte"}, "Estat", "Import"),
    #"Split Column by Delimiter" = Table.SplitColumn(#"Unpivoted Other Columns", "Estat", Splitter.SplitTextByDelimiter(" any ", QuoteStyle.Csv), {"Estat", "Any"}),
    #"Changed Type" = Table.TransformColumnTypes(#"Split Column by Delimiter",{{"Estat", type text}, {"Any", Int64.Type}})
in
    #"Changed Type"

 

Specializing in Power Query Formula Language (M)

Thank you very much!

 

It certainly works!

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.