Forum Discussion
jpt1228
5 years agoResponsive Resident
Expanding JSON column results in adding rows
Hello, I have a JSON file from an API endpoint which has many nested columns. When I click hiring.team expand I get 3 columns which are hiring_managers, recruiters, coordinators. If I want to get the...
- 5 years ago
You can add a custom column with this formula to concatenate the recruiters.
= Text.Combine(List.Transform([hiring_managers], each Record.Field(_, "name")), ", ")
Regards,
Pat
mahoneypat
5 years agoMicrosoft Employee
You can add a custom column with this formula to concatenate the recruiters.
= Text.Combine(List.Transform([hiring_managers], each Record.Field(_, "name")), ", ")
Regards,
Pat
jpt1228
5 years agoResponsive Resident
Thanks mahoneypat What if in addition I wanted to extract "name" and "primary". Primary is another value in the nested column available if I expand "name" Ideally the customer column would be:
name1, primary1, name2, primary 2