Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
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 get data from a JSON query of the Slate Technolution database into Power BI using Web.
When I updated the query in Slate (adding new columns and adding filters to limit fewer rows) and refresh it in Power BI, it refreshes the rows (retrieved fewer rows), but the number of columns stays the same, did not add more.
Solved! Go to Solution.
Hi @mandynguyen ,
I think the problem is with the #"Expanded row1" (Table.ExpandRecordColumn) step. In this step we need to manually specify the columns that need to be expanded, which will result in the new columns in the data source not being selected.
You need to go to step #"Expanded row1" and select the new column (For example the cc field).
Or use the following code to expand the columns dynamically.
let
Source = Table.FromRecords({
[
a = [aa = 1, bb = 2, cc = 3]
]
}),
#"Added Custom" = Table.AddColumn(Source, "Custom", each Record.FieldNames([a])),
#"Expanded a" = Table.ExpandRecordColumn(Source, "a", List.Combine(#"Added Custom"[Custom]), List.Combine(#"Added Custom"[Custom]))
in
#"Expanded a"
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @mandynguyen ,
I think the problem is with the #"Expanded row1" (Table.ExpandRecordColumn) step. In this step we need to manually specify the columns that need to be expanded, which will result in the new columns in the data source not being selected.
You need to go to step #"Expanded row1" and select the new column (For example the cc field).
Or use the following code to expand the columns dynamically.
let
Source = Table.FromRecords({
[
a = [aa = 1, bb = 2, cc = 3]
]
}),
#"Added Custom" = Table.AddColumn(Source, "Custom", each Record.FieldNames([a])),
#"Expanded a" = Table.ExpandRecordColumn(Source, "a", List.Combine(#"Added Custom"[Custom]), List.Combine(#"Added Custom"[Custom]))
in
#"Expanded a"
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you! I manually check the new column and it worked!
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 |
|---|---|
| 48 | |
| 40 | |
| 38 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |