<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Combining Multiple Values from a SharePoint List into a Single Cell in Dataverse Using Power Query a in Dataflow</title>
    <link>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4615537#M4936</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I have an online SharePoint list that I want to import into a Dataverse table using a dataflow. The SharePoint list contains a column with multiple values (list or table type) that I need to expand. However, instead of expanding these values into multiple rows, I want to combine them into a single cell, separated by comma&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Mar 2025 01:45:40 GMT</pubDate>
    <dc:creator>LsL</dc:creator>
    <dc:date>2025-03-19T01:45:40Z</dc:date>
    <item>
      <title>Combining Multiple Values from a SharePoint List into a Single Cell in Dataverse Using Power Query a</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4615537#M4936</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I have an online SharePoint list that I want to import into a Dataverse table using a dataflow. The SharePoint list contains a column with multiple values (list or table type) that I need to expand. However, instead of expanding these values into multiple rows, I want to combine them into a single cell, separated by comma&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 01:45:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4615537#M4936</guid>
      <dc:creator>LsL</dc:creator>
      <dc:date>2025-03-19T01:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Multiple Values from a SharePoint List into a Single Cell in Dataverse Using Power Query a</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4615817#M4937</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1241502" data-lia-user-login="LsL" class="lia-mention lia-mention-user"&gt;LsL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ensure that the multi-value column is in text format. Use transformations like `Text.Clean` or `Text.Trim` if necessary&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use the Group By function from the Power Query&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Edit the M Code generated by Group By to combine values using `Text.Combine`:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Table.Group(#"PreviousStep", {"ID"}, {{"CombinedValues", each Text.Combine([MultiValueColumn], ","), type text}})&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 07:59:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4615817#M4937</guid>
      <dc:creator>nilendraFabric</dc:creator>
      <dc:date>2025-03-19T07:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Multiple Values from a SharePoint List into a Single Cell in Dataverse Using Power Query a</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4623414#M4944</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Can this approach achieve expanding a table column in SharePoint Online list using Power Query without creating multiple rows with the same ID, and instead combine the values into a single string?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 05:49:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4623414#M4944</guid>
      <dc:creator>LsL</dc:creator>
      <dc:date>2025-03-25T05:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Multiple Values from a SharePoint List into a Single Cell in Dataverse Using Power Query a</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4684752#M5084</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1241502" data-lia-user-login="LsL" class="lia-mention lia-mention-user"&gt;LsL&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft fabric community forum. Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="913195" data-lia-user-login="nilendraFabric" class="lia-mention lia-mention-user"&gt;nilendraFabric&lt;/a&gt;,&amp;nbsp;for your inputs on this issue.&lt;BR /&gt;&lt;BR /&gt;I understand you are working with a SharePoint Online list and using a dataflow to import it into a Dataverse table. You have a column containing multiple values (such as a people picker or multi-select choice field), and you want to combine these values into a single cell separated by commas instead of expanding them into separate rows.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;This is a common scenario when handling list or table-type columns in Power Query. Here’s how you can accomplish this in your dataflow using Power Query:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Combine Multiple Values into a Single Cell: Connect your SharePoint list in the Power Query editor. Identify the multi-value column (e.g., Assigned to). Add a Custom Column with the following formula:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Text.Combine(List.Transform([AssignedTo], each Record.Field(_, "DisplayName")), ", ")&lt;/LI-CODE&gt;
&lt;P&gt;This line extracts the display name from each item in the list and combines them into a single comma-separated string. If your multi-value column has a different name or contains different fields, update "display name" accordingly.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Remove the original multi-value column if it is no longer needed and rename your new custom column to align with your schema. Ensure your final output contains only flat columns (text, number, date) to ensure compatibility with Dataverse.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;After completing these steps, save and refresh the dataflow. This will ensure each SharePoint list item remains in a single row, with the combined multi-value field in one cell as intended.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kindly refer to the below following links for more information:&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/powerquery-m/text-combine" target="_blank"&gt;Text. Combine - Power Query M | Microsoft Learn&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/powerquery-m/list-transform" target="_blank"&gt;List. Transform - Power Query M | Microsoft Learn&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If this post&amp;nbsp;helps, then please give us ‘Kudos’ and consider&amp;nbsp;Accept it as a solution&amp;nbsp;to help the other members find it more quickly.&lt;BR /&gt;&lt;BR /&gt;Thank you for using Microsoft Community Forum.&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 12:03:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4684752#M5084</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-05-08T12:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Multiple Values from a SharePoint List into a Single Cell in Dataverse Using Power Query a</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4687818#M5092</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1241502" data-lia-user-login="LsL" class="lia-mention lia-mention-user"&gt;LsL&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 May 2025 09:47:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4687818#M5092</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-05-11T09:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Multiple Values from a SharePoint List into a Single Cell in Dataverse Using Power Query a</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4692578#M5108</link>
      <description>&lt;P&gt;&lt;SPAN data-teams="true"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1241502" data-lia-user-login="LsL" class="lia-mention lia-mention-user"&gt;LsL&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 13:00:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4692578#M5108</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-05-14T13:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Multiple Values from a SharePoint List into a Single Cell in Dataverse Using Power Query a</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4696618#M5127</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1241502" data-lia-user-login="LsL" class="lia-mention lia-mention-user"&gt;LsL&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please Accept it as a solution and give it a 'Kudos' so others can find it easily.&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sat, 17 May 2025 03:57:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4696618#M5127</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2025-05-17T03:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Multiple Values from a SharePoint List into a Single Cell in Dataverse Using Power Query a</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4805652#M5404</link>
      <description>&lt;P&gt;You can do this in Power Query before loading to Dataverse.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Steps:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;In your dataflow, load the SharePoint list.&lt;/P&gt;&lt;P&gt;The multi-value column will appear as a table/list.&lt;/P&gt;&lt;P&gt;Use Transform → Extract Values on that column.&lt;/P&gt;&lt;P&gt;Choose a separator (, or ;).&lt;/P&gt;&lt;P&gt;Power Query will flatten the list into a single text string in the cell.&lt;/P&gt;&lt;P&gt;Load to Dataverse — now you’ll get one row with combined values instead of multiple rows.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So instead of expanding into rows, you extract values with a delimiter.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Aug 2025 13:44:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Combining-Multiple-Values-from-a-SharePoint-List-into-a-Single/m-p/4805652#M5404</guid>
      <dc:creator>Shahid12523</dc:creator>
      <dc:date>2025-08-23T13:44:10Z</dc:date>
    </item>
  </channel>
</rss>

