Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
hi there,
Every month I get a brunch of 20 xls files containing 12+ columns. The name of those columns changed every month (typically previous 5 months, current month, next 6 months ) . How can I use the Table.ExpandTableColumn function without knowing the names of the columns ?
I tried Table.ExpanTableColumn(#"PreviousStep", "XlsContent",{*}) and, of course, it didn't work 🙂
I guess I should get them from a function, but I can't figure out wich one.
Can you help ?
thanks !
Solved! Go to Solution.
Hi @fsim
Please, see the attached file with a solution, it will look at all the column names within the tables and use this as a list to expand columns
Hello @fsim
use this codesnippet to understand how to build your Table.ExpandColumn dynamically.
ExpandAllColumns = Table.ExpandTableColumn
(
PreviousStep,
"ColumnToBeExpanded",
List.Union
(
List.Transform
(
List.Buffer(PreviousStep[ColumnToBeExpanded]), each Table.ColumnNames
(
_
)
)
)
)
in
ExpandAllColumns
If this post helps or solves your problem, please mark it as solution.
Kudos are nice to - thanks
Have fun
Jimmy
Hi @fsim
Please, see the attached file with a solution, it will look at all the column names within the tables and use this as a list to expand columns
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 7 | |
| 5 | |
| 5 |