Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Would anyone know how I can duplicate the rows of a query based on a value in a column?
Here's an example:
| ID | Installments |
| 1357 | 5 |
| 1606 | 3 |
| 1126 | 2 |
To:
| ID | Installments |
| 1357 | 1 |
| 1357 | 2 |
| 1357 | 3 |
| 1357 | 4 |
| 1357 | 5 |
| 1606 | 1 |
| 1606 | 2 |
| 1606 | 3 |
| 1126 | 1 |
| 1126 | 2 |
Solved! Go to Solution.
Hi,
Try this M code
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjQ2NVfSUTJVitUBcswMzIAcYwjH0AjEMVKKjQUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [ID = _t, Installments = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"Installments", Int64.Type}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each {Number.From(1)..Number.From([Installments])}),
#"Expanded Custom" = Table.ExpandListColumn(#"Added Custom", "Custom"),
#"Removed Columns" = Table.RemoveColumns(#"Expanded Custom",{"Installments"}),
#"Renamed Columns" = Table.RenameColumns(#"Removed Columns",{{"Custom", "Instalments"}}),
#"Changed Type1" = Table.TransformColumnTypes(#"Renamed Columns",{{"Instalments", Int64.Type}})
in
#"Changed Type1"
Here is the result
Thanks Pietro & Ashish for this question and solution! Very helpful for adding/duplicating rows based on a column variable so that each unique instance can be assigned a primary key.
You are welcome.
Hi,
Try this M code
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjQ2NVfSUTJVitUBcswMzIAcYwjH0AjEMVKKjQUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [ID = _t, Installments = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"Installments", Int64.Type}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each {Number.From(1)..Number.From([Installments])}),
#"Expanded Custom" = Table.ExpandListColumn(#"Added Custom", "Custom"),
#"Removed Columns" = Table.RemoveColumns(#"Expanded Custom",{"Installments"}),
#"Renamed Columns" = Table.RenameColumns(#"Removed Columns",{{"Custom", "Instalments"}}),
#"Changed Type1" = Table.TransformColumnTypes(#"Renamed Columns",{{"Instalments", Int64.Type}})
in
#"Changed Type1"
Here is the result
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 59 | |
| 45 | |
| 17 | |
| 17 |
| User | Count |
|---|---|
| 115 | |
| 112 | |
| 38 | |
| 35 | |
| 26 |