This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
I would like to create a table with a count up to the column value.
So from this
| ID | Period |
| 1432 | 4 |
| 2342 | 2 |
To this
| ID | Period |
| 1432 | 0 |
| 1432 | 1 |
| 1432 | 2 |
| 1432 | 3 |
| 1432 | 4 |
| 2342 | 0 |
| 2342 | 1 |
| 2342 | 2 |
Solved! Go to Solution.
Hi,
you can add a custom column
{Number.From(0)..Number.From([Period])}
then Expand to new rows
and that's done
If this post is useful to help you to solve your issue consider giving the post a thumbs up
and accepting it as a solution !
Hi,
you can add a custom column
{Number.From(0)..Number.From([Period])}
then Expand to new rows
and that's done
If this post is useful to help you to solve your issue consider giving the post a thumbs up
and accepting it as a solution !
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 4 | |
| 4 | |
| 3 |