<?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 Re: Dataflow Gen2 Misreads Excel File – Encoding or Format Issue in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4823765#M12293</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1269548"&gt;@prathijp&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I check if this issue has been resolved? If not, Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Thu, 11 Sep 2025 14:50:14 GMT</pubDate>
    <dc:creator>v-nmadadi-msft</dc:creator>
    <dc:date>2025-09-11T14:50:14Z</dc:date>
    <item>
      <title>Dataflow Gen2 Misreads Excel File – Encoding or Format Issue</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4813595#M12087</link>
      <description>&lt;P&gt;I’m trying to read and transform an Excel file stored in a SharePoint folder into a Lakehouse table using&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Dataflow Gen2&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;in Microsoft Fabric.&lt;/P&gt;&lt;P&gt;I’m using the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;SharePoint Folder connector&lt;/STRONG&gt;, and while the connection works, the Excel data is being read with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;incorrect or garbled characters&lt;/STRONG&gt;, which suggests a possible encoding or format issue.&lt;/P&gt;&lt;P&gt;Interestingly, when I try the same process with a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;CSV version of the file&lt;/STRONG&gt;, the data is read correctly by the dataflow.&lt;/P&gt;&lt;P&gt;I’ve already ensured the file is saved as a proper&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Excel Workbook (.xlsx)&lt;/STRONG&gt;, but the issue persists. I’ve attached a sample of the data being read incorrectly.&lt;/P&gt;&lt;P&gt;Could you help me understand why this is happening and how to resolve it?&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 13:30:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4813595#M12087</guid>
      <dc:creator>prathijp</dc:creator>
      <dc:date>2025-09-01T13:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Gen2 Misreads Excel File – Encoding or Format Issue</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4813940#M12096</link>
      <description>&lt;P&gt;Problem: Dataflow Gen2 misreads Excel from SharePoint due to encoding/streaming issues.&lt;BR /&gt;CSV works because it's plain text; Excel needs proper binary stream.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Fix: Use Web.Contents() with a direct SharePoint download URL to fetch the actual Excel file:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;let&lt;BR /&gt;Source = Web.Contents("https://...download.aspx?...YourFile.xlsx"),&lt;BR /&gt;ExcelData = Excel.Workbook(Source, null, true)&lt;BR /&gt;in&lt;BR /&gt;ExcelData&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 04:09:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4813940#M12096</guid>
      <dc:creator>Shahid12523</dc:creator>
      <dc:date>2025-09-02T04:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Gen2 Misreads Excel File – Encoding or Format Issue</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4816225#M12130</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1269548"&gt;@prathijp&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thanks for reaching out to the Microsoft fabric community forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;In Power Query, use the Excel.Workbook([Content]) function. After connecting through the SharePoint Folder, locate the file’s binary content and apply this function to correctly decode the workbook structure. This ensures the Excel file is interpreted and loaded properly.&lt;BR /&gt;&lt;BR /&gt;I hope this information helps. Please do let us know if you have any further queries.&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 04 Sep 2025 04:02:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4816225#M12130</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-09-04T04:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Gen2 Misreads Excel File – Encoding or Format Issue</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4819500#M12182</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1269548"&gt;@prathijp&lt;/a&gt;&amp;nbsp;&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.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 05:36:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4819500#M12182</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-09-08T05:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Gen2 Misreads Excel File – Encoding or Format Issue</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4823765#M12293</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1269548"&gt;@prathijp&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I check if this issue has been resolved? If not, Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 14:50:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4823765#M12293</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-09-11T14:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dataflow Gen2 Misreads Excel File – Encoding or Format Issue</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4825296#M12325</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1269548"&gt;@prathijp&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the suggestions &amp;nbsp;provided by the community members for the issue worked. Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards&lt;/P&gt;</description>
      <pubDate>Sun, 14 Sep 2025 03:57:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Dataflow-Gen2-Misreads-Excel-File-Encoding-or-Format-Issue/m-p/4825296#M12325</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-09-14T03:57:33Z</dc:date>
    </item>
  </channel>
</rss>

