Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
I am expanding the specifications column. The available data is expanding successfully. But when the records are aaded in future in specification column it does not expand it all.
What query will help in expanding the records dynamically. Below are the images of record column and the query of expanding.
Thanks in advance.
Solved! Go to Solution.
= Table.ExpandRecordColumn(#"Reordered Columns", "specifications",Record.FieldNames(Record.Combine(product_data[specifications])))
@Parth_1 if all records have the same set of fields then read field names into some variable using Record.FieldNames(your_table[specifications]{0}) and use it in expand step.
= Table.ExpandRecordColumn(#"Reordered Columns", "specifications",Record.FieldNames(product_data[specifications]{0}))
As per your suggestion I Expanded the column with above code but it does not expanding all the records in specification column itself.
@Parth_1 make sure that product_data has valid records in specifications column. Try solution provided by @wdx223_Daniel but still pay attention to product_data table.
Thank You for the solution and suggestion.
= Table.ExpandRecordColumn(#"Reordered Columns", "specifications",Record.FieldNames(Record.Combine(product_data[specifications])))
I try to tackle the same issue but keep getting the error that there is a loop. How can I make sure i indicate the right column?
hi @Parth_1
Intermediate steps containing the dynamic list of all column names would be required.
in the step shown in the screenshot, you would input the step name instead of the hard-coded values.
Kindly provide a sample input masking sensitive data incase further troubleshooting is required.
Refer to example 1 in this video for a similar concept: The Magic of working with Lists in Power Query (youtube.com)
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 11 | |
| 11 | |
| 5 | |
| 4 | |
| 4 |