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.
Tried searching but couldnt find exactly what i needed.
I have a database with data over multiple columns and same ID, like this:
but i need it in a format like
data_id | Team | Location | comments |
9 | erron | Honour |
Solved! Go to Solution.
NewStep=Table.FromRecords(Table.Group(PreviousStepName,"data_id",{"n",each _{0}[[data_id]]&Record.FromList([value],[name])})[n])
Worked perfectly, thank you!!
NewStep=Table.FromRecords(Table.Group(PreviousStepName,"data_id",{"n",each _{0}[[data_id]]&Record.FromList([value],[name])})[n])