Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi!
How could I make so many duplicate rows if I have an amount in one row and that amount goes to 1?
Thanks in advance!
Solved! Go to Solution.
Hi @Ilka719
In Power Query, add a custom column with this code:
Table.Repeat(Table.FromRecords({[Col1=1]}),[Amount])
And now, expand values:
Finally, remove the original amount column, and rename the custom as Amount
Hi @Ilka719
In Power Query, add a custom column with this code:
Table.Repeat(Table.FromRecords({[Col1=1]}),[Amount])
And now, expand values:
Finally, remove the original amount column, and rename the custom as Amount
Great! Thank you!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.