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 moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. 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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 4 | |
| 4 |