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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I'm having some problems to expand a list from a JSON document in Power Query.
Look this figure:
The columns dimensions and dimensionsMap have just one value. The column timestamps has 30 values, so, when I expand my table must has 30 rows. Perfect!
The last column values also has 30 values. My expectation: my table should still have only 30 rows. But, instead, my table now has 900 rows.
So, I need this:
dimensions | dimensionsMap | timestamps | values |
a | 1 | c | 4 |
b | 2 | d | 5 |
c | 3 | e | 6 |
But I have this:
dimension | dimensionsMap | timestamps | values |
a | 1 | c | 4 |
a | 1 | c | 5 |
a | 1 | c | 6 |
b | 2 | d | 4 |
b | 2 | d | 5 |
b | 2 | d | 6 |
c | 3 | e | 4 |
c | 3 | e | 5 |
c | 3 | e | 6 |
Can you help me?
Solved! Go to Solution.
You can add a custom column with a formula like this to combine those lists into a table. You can then expand that table.
= Table.FromColumns({[dimensions], [dimensionsGroup]})
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Hi @Karine_Zanfolin,
In fact, this result works as expected as expand feature designs. (Raw table records will be multiple if you expand one field record)
In my opinion, I'd like to suggest you add an index field to your table and do unpivot column on the field which you wanted to expand. Then your field will be converted to 'attribute' and 'value' and you can expand them at the same time without duplicate these field values.
After these steps, you will get the unpivoted and expand fields value that mapping with index field values. You can do some mapping and pivot operations to transfer them to raw table structures.
Regards,
Xiaoxin Sheng
You can add a custom column with a formula like this to combine those lists into a table. You can then expand that table.
= Table.FromColumns({[dimensions], [dimensionsGroup]})
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.