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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Syndicate_Admin
Administrator
Administrator

Split rows into columns without delimiter

Hello group!

I have a column (Information) that I import from an excel file where 3 data are displayed as follows:

InformationValue
Familia1500
SubFamilia1300
Producto150
Producto2250
SubFamilia2200
Producto3200
Familia2500
SubFamilia3300
Producto4300
SubFamilia4200
Producto5100
Producto6100

And I want to transform it into 3 separate columns:

FamilySubfamilyProductValue
Familia1SubFamilia1Producto150
Familia1SubFamilia1Producto2250
Familia1SubFamilia2Producto3200
Familia2SubFamilia3Producto4300
Familia2SubFamilia4Producto5100
Familia2SubFamilia4Producto6100

How can I do this transformation in Power Query?

Thanks a lot.

1 ACCEPTED SOLUTION
ichavarria
Solution Specialist
Solution Specialist

Hi @Syndicate_Admin,

 

You can use Power Query to transform the data from the single column to multiple columns. Here's how:

  1. Open Power BI and create a new query by clicking on "Get Data" in the Home tab.

  2. Select the Excel file containing the data and click on "Transform Data".

  3. In the Power Query Editor, select the "Information" column and click on "Split Column" in the "Transform" tab.

  4. Choose "By Delimiter" and enter the delimiter as a Tab character (\t).

  5. Choose "Split into Rows" and click OK.

  6. Now you should have a new column with the separate values. Rename the column to "Category" by right-clicking on the column header and choosing "Rename".

  7. Create a new column by clicking on "Add Column" in the "Add Column" tab.

  8. Enter the following formula in the formula bar:

= if Text.StartsWith([Category], "Familia") then [Category] else null

  1. Name the new column "Family".

  2. Create another new column and enter the following formula:

= if Text.StartsWith([Category], "SubFamilia") then [Category] else null

  1. Name the new column "Subfamily".

  2. Create a third new column and enter the following formula:

= if Text.StartsWith([Category], "Producto") then [Category] else null

  1. Name the new column "Product".

  2. Delete the "Category" column by right-clicking on the column header and choosing "Remove".

  3. Select all the columns (Family, Subfamily, Product, and Value) by clicking on the first column header and holding down the Shift key while clicking on the last column header.

  4. Click on "Remove Other Columns" in the "Home" tab.

  5. Close and apply the changes by clicking on "Close & Apply" in the "Home" tab.

Your data should now be transformed into the desired format with separate columns for Family, Subfamily, Product, and Value.

 

Best regards, 

Isaac Chavarria 


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
ichavarria
Solution Specialist
Solution Specialist

Hi @Syndicate_Admin,

 

You can use Power Query to transform the data from the single column to multiple columns. Here's how:

  1. Open Power BI and create a new query by clicking on "Get Data" in the Home tab.

  2. Select the Excel file containing the data and click on "Transform Data".

  3. In the Power Query Editor, select the "Information" column and click on "Split Column" in the "Transform" tab.

  4. Choose "By Delimiter" and enter the delimiter as a Tab character (\t).

  5. Choose "Split into Rows" and click OK.

  6. Now you should have a new column with the separate values. Rename the column to "Category" by right-clicking on the column header and choosing "Rename".

  7. Create a new column by clicking on "Add Column" in the "Add Column" tab.

  8. Enter the following formula in the formula bar:

= if Text.StartsWith([Category], "Familia") then [Category] else null

  1. Name the new column "Family".

  2. Create another new column and enter the following formula:

= if Text.StartsWith([Category], "SubFamilia") then [Category] else null

  1. Name the new column "Subfamily".

  2. Create a third new column and enter the following formula:

= if Text.StartsWith([Category], "Producto") then [Category] else null

  1. Name the new column "Product".

  2. Delete the "Category" column by right-clicking on the column header and choosing "Remove".

  3. Select all the columns (Family, Subfamily, Product, and Value) by clicking on the first column header and holding down the Shift key while clicking on the last column header.

  4. Click on "Remove Other Columns" in the "Home" tab.

  5. Close and apply the changes by clicking on "Close & Apply" in the "Home" tab.

Your data should now be transformed into the desired format with separate columns for Family, Subfamily, Product, and Value.

 

Best regards, 

Isaac Chavarria 


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Thanks @Syndicate_Admin, great job!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.