The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Dear all,
I have a table with a lot of culumns, and I want to combine them in a dymamic way.
I am using then the following instructions:
Solved! Go to Solution.
Helper_Source1 = Table.AddColumn (
Total_Sales_DOLLARS_New_Name_Source1,
"Helper_Source1",
each Text.Combine(
List.Transform(HeaderDifference_Source1, (fn) => Record.Field(_, fn)),
""
)
)
Helper_Source1 = Table.AddColumn (
Total_Sales_DOLLARS_New_Name_Source1,
"Helper_Source1",
each Text.Combine(
List.Transform(HeaderDifference_Source1, (fn) => Record.Field(_, fn)),
""
)
)
Perfect. Many thanks.