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!View all the Fabric Data Days sessions on demand. View schedule
Hi
I have a column which contains integer
| Level |
| 4 |
| 7 |
| 5 |
| 1 |
| 3 |
I have to generate sequence starting from 1 and upto the number in Level column in each row, sequence is seperated by comma.
expected output is
| Level | sequence |
| 4 | 1,2,3,4 |
| 7 | 1,2,3,4,5,6,7 |
| 5 | 1,2,3,4,5 |
| 1 | 1 |
| 3 | 1,2,3 |
Any idea how to do in Power BI ?
Thanks in advance
Solved! Go to Solution.
With Power Query, you can add a custom column like
Text.Combine(
List.Transform({1..[Level]},each Text.From(_)),",")
With Power Query, you can add a custom column like
Text.Combine(
List.Transform({1..[Level]},each Text.From(_)),",")
@Hari01 Well, in DAX you could use a calculated column like:
sequence = CONCATENATEX(GENERATESERIES(1,[Level]),[Value],",")
I believe the equivalent in Power Query is List.Generate
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 10 | |
| 9 | |
| 6 | |
| 5 | |
| 3 |