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
streborxam
Frequent Visitor

How can I use Power Query to expand a cell into several rows?

Essentially, this is what I have:

 

YearCountyCityfatalitiespercentEmphasis_CategoryEmphasis_Area 
2010AdamsAdams-Unincorporated61.000TotalTotal 
2010BentonBenton-Unincorporated91.000TotalTotal 

 

And this is what I want to have:

 

YearCountyCityfatalitiespercentEmphasis_CategoryEmphasis_Area
2010AdamsAdams-Unincorporated11.000TotalTotal
2010AdamsAdams-Unincorporated11.000TotalTotal
2010AdamsAdams-Unincorporated11.000TotalTotal
2010AdamsAdams-Unincorporated11.000TotalTotal
2010AdamsAdams-Unincorporated11.000TotalTotal
2010AdamsAdams-Unincorporated11.000TotalTotal
2010BentonBenton-Unincorporated11.000TotalTotal
2010BentonBenton-Unincorporated11.000TotalTotal
2010BentonBenton-Unincorporated11.000TotalTotal
2010BentonBenton-Unincorporated11.000TotalTotal
2010BentonBenton-Unincorporated11.000TotalTotal
2010BentonBenton-Unincorporated11.000TotalTotal
2010BentonBenton-Unincorporated11.000TotalTotal
2010BentonBenton-Unincorporated11.000TotalTotal
2010BentonBenton-Unincorporated11.000TotalTotal

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @streborxam 

Please refer to the following steps .

(1)Add a custom column .

Ailsamsft_0-1631601017630.png

Ailsamsft_1-1631601017632.png

(2)Expand the custom column .

Ailsamsft_2-1631601017635.png

(3)Remove the column [fatalities] and add a custom column rename it with same name [fatalities]

Ailsamsft_3-1631601017636.pngAilsamsft_4-1631601017639.png

(4) Remove the column [custom] and reorder the column [fatalities] in [City] and [percent] .

Ailsamsft_5-1631601017641.png

I have attached my pbix file , you can refer to it .

 

Best Regards

Community Support Team _ Ailsa Tao

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
Anonymous
Not applicable

Hi @streborxam 

Please refer to the following steps .

(1)Add a custom column .

Ailsamsft_0-1631601017630.png

Ailsamsft_1-1631601017632.png

(2)Expand the custom column .

Ailsamsft_2-1631601017635.png

(3)Remove the column [fatalities] and add a custom column rename it with same name [fatalities]

Ailsamsft_3-1631601017636.pngAilsamsft_4-1631601017639.png

(4) Remove the column [custom] and reorder the column [fatalities] in [City] and [percent] .

Ailsamsft_5-1631601017641.png

I have attached my pbix file , you can refer to it .

 

Best Regards

Community Support Team _ Ailsa Tao

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

lbendlin
Super User
Super User

@streborxam here is one option

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjIwNFDSUXJMScwthtG6oXmZecn5RQX5RYklqSlAYTMgNtQzMAApDckvScyB07E6cDOcUvNK8vPgDExTLHGbEgsA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [ear = _t, County = _t, City = _t, fatalities = _t, percent = _t, Emphasis_Category = _t, Emphasis_Area = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"fatalities", Int64.Type}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each {1..[fatalities]}),
    #"Expanded Custom" = Table.ExpandListColumn(#"Added Custom", "Custom"),
    #"Removed Other Columns" = Table.SelectColumns(#"Expanded Custom",{"ear", "County", "City", "percent", "Emphasis_Category", "Emphasis_Area"}),
    #"Added Custom1" = Table.AddColumn(#"Removed Other Columns", "fatalities", each 1),
    #"Reordered Columns" = Table.ReorderColumns(#"Added Custom1",{"ear", "County", "City", "fatalities", "percent", "Emphasis_Category", "Emphasis_Area"})
in
    #"Reordered Columns"

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.