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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! 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 !
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 16 | |
| 12 | |
| 10 | |
| 7 | |
| 6 |