<?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 Script to create (or append new sheet) a new XLSX file in lakehouse Files directory in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4419191#M7364</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi.&lt;/P&gt;
&lt;P&gt;I'm trying to create a python function to create a new XLSX file in Files directory. I want to append new sheet if the file already exists, otherwise, create new file.&lt;/P&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P&gt;This is tha data I provide to the function:&lt;/P&gt;
&lt;DIV&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;dest_path = 'abfss://'+str(workspace_id)+'@onelake.dfs.fabric.microsoft.com/'+str(lakehouse_id)+"/Files/testing_file.xlsx"&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;sheet_name = 'sheet1'&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;df (pandas df)&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;LI-CODE lang="python"&gt;def df_to_excel(df, dest_path, sheet_name):
    import pandas as pd

    from openpyxl import load_workbook
    try:
        import os
        file_name=os.path.basename(dest_path)
        local_path = '/tmp/'+str(file_name)
        # Copy file from Azure Blob Storage to local file system
        import fsspec
        account_name = 'onelake'
        account_host = 'onelake.dfs.fabric.microsoft.com'
        fs = fsspec.filesystem('abfss', account_name=account_name, account_host=account_host)

        with fs.open(dest_path, 'rb') as src_file:
            with open(local_path, 'wb') as dst_file:
                shutil.copyfileobj(src_file, dst_file)

        existing_book = load_workbook(local_path)
        print("Exists")
    except FileNotFoundError:
        existing_book = None
        print("Doesn't exist")

    # If exists, add existing_book. Otherwise, new file
    with pd.ExcelWriter(local_path, engine='openpyxl',mode='a') as writer:
        if existing_book:
            writer.book = existing_book
        df_pd.to_excel(writer, sheet_name=sheet_name, index=False)&lt;/LI-CODE&gt;
&lt;P&gt;But it's not working.&lt;/P&gt;
&lt;P&gt;I copy the file into local system because load_workbook function is not able to find the file in remote server&lt;/P&gt;
&lt;P&gt;Any ideas?&lt;/P&gt;</description>
    <pubDate>Thu, 20 Feb 2025 07:33:51 GMT</pubDate>
    <dc:creator>amaaiia</dc:creator>
    <dc:date>2025-02-20T07:33:51Z</dc:date>
    <item>
      <title>Script to create (or append new sheet) a new XLSX file in lakehouse Files directory</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4419191#M7364</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi.&lt;/P&gt;
&lt;P&gt;I'm trying to create a python function to create a new XLSX file in Files directory. I want to append new sheet if the file already exists, otherwise, create new file.&lt;/P&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P&gt;This is tha data I provide to the function:&lt;/P&gt;
&lt;DIV&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;dest_path = 'abfss://'+str(workspace_id)+'@onelake.dfs.fabric.microsoft.com/'+str(lakehouse_id)+"/Files/testing_file.xlsx"&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;sheet_name = 'sheet1'&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;df (pandas df)&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;LI-CODE lang="python"&gt;def df_to_excel(df, dest_path, sheet_name):
    import pandas as pd

    from openpyxl import load_workbook
    try:
        import os
        file_name=os.path.basename(dest_path)
        local_path = '/tmp/'+str(file_name)
        # Copy file from Azure Blob Storage to local file system
        import fsspec
        account_name = 'onelake'
        account_host = 'onelake.dfs.fabric.microsoft.com'
        fs = fsspec.filesystem('abfss', account_name=account_name, account_host=account_host)

        with fs.open(dest_path, 'rb') as src_file:
            with open(local_path, 'wb') as dst_file:
                shutil.copyfileobj(src_file, dst_file)

        existing_book = load_workbook(local_path)
        print("Exists")
    except FileNotFoundError:
        existing_book = None
        print("Doesn't exist")

    # If exists, add existing_book. Otherwise, new file
    with pd.ExcelWriter(local_path, engine='openpyxl',mode='a') as writer:
        if existing_book:
            writer.book = existing_book
        df_pd.to_excel(writer, sheet_name=sheet_name, index=False)&lt;/LI-CODE&gt;
&lt;P&gt;But it's not working.&lt;/P&gt;
&lt;P&gt;I copy the file into local system because load_workbook function is not able to find the file in remote server&lt;/P&gt;
&lt;P&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 07:33:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4419191#M7364</guid>
      <dc:creator>amaaiia</dc:creator>
      <dc:date>2025-02-20T07:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Script to create (or append new sheet) a new XLSX file in lakehouse Files directory</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4420359#M7393</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your current function has a few issues that need fixing:&lt;/P&gt;
&lt;UL&gt;
&lt;LI data-start="60" data-end="165"&gt;shutil is not imported – You are using shutil.copyfileobj() but haven't imported the module.&lt;/LI&gt;
&lt;LI data-start="166" data-end="255"&gt;df_pd is undefined – You should be using df, which is the function argument.&lt;/LI&gt;
&lt;LI data-start="256" data-end="417"&gt;File handling in Azure OneLake (ABFS) needs a write-back operation – You are copying the file locally, modifying it, but not writing it back to OneLake.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please fix these and try again once.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Prashanth Are&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 18:34:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4420359#M7393</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-02-20T18:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Script to create (or append new sheet) a new XLSX file in lakehouse Files directory</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4587267#M7545</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/686932"&gt;@amaaiia&lt;/a&gt;, As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for your issue worked? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 06:46:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4587267#M7545</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-02-27T06:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Script to create (or append new sheet) a new XLSX file in lakehouse Files directory</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4592218#M7632</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/686932"&gt;@amaaiia&lt;/a&gt;,&amp;nbsp;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for your issue worked? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Mar 2025 05:20:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4592218#M7632</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-03-03T05:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Script to create (or append new sheet) a new XLSX file in lakehouse Files directory</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4597846#M7735</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/686932" target="_blank"&gt;@amaaiia&lt;/A&gt;,&amp;nbsp;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for your issue worked? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 06:37:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4597846#M7735</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-03-06T06:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Script to create (or append new sheet) a new XLSX file in lakehouse Files directory</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4598002#M7738</link>
      <description>&lt;P&gt;Not working&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 08:01:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4598002#M7738</guid>
      <dc:creator>amaaiia</dc:creator>
      <dc:date>2025-03-06T08:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Script to create (or append new sheet) a new XLSX file in lakehouse Files directory</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4732771#M10165</link>
      <description>&lt;P&gt;Hi amaiia,&lt;/P&gt;
&lt;P&gt;I noticed that there are some errors in the code apart from missing an export from shutil.&lt;/P&gt;
&lt;P&gt;The ExcelWriter context is not correctly configured when appending sheets.&lt;/P&gt;
&lt;P&gt;You're not writing the file back to the lakehouse after saving it locally and there is a typo in df_pd.to_excel(...) — it should be df.to_excel(...)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use this code and check-&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;def df_to_excel(df, dest_path, sheet_name):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; import pandas as pd&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; import shutil&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; import os&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from openpyxl import load_workbook&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from pandas import ExcelWriter&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; import fsspec&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; account_name = 'onelake'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; account_host = 'onelake.dfs.fabric.microsoft.com'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fs = fsspec.filesystem('abfss', account_name=account_name, account_host=account_host)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; file_name = os.path.basename(dest_path)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; local_path = f'/tmp/{file_name}'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; existing_book = None&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; file_exists = False&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; try:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with fs.open(dest_path, 'rb') as src_file:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with open(local_path, 'wb') as dst_file:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; shutil.copyfileobj(src_file, dst_file)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; existing_book = load_workbook(local_path)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file_exists = True&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("File exists, appending sheet.")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; except FileNotFoundError:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("File does not exist, will create a new one.")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Write to the Excel file&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; with pd.ExcelWriter(local_path, engine='openpyxl', mode='a' if file_exists else 'w') as writer:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if existing_book:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; writer.book = existing_book&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; writer.sheets = {ws.title: ws for ws in existing_book.worksheets}&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; df.to_excel(writer, sheet_name=sheet_name, index=False)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Upload updated file back to lakehouse&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; with open(local_path, 'rb') as f:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with fs.open(dest_path, 'wb') as dest_file:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; shutil.copyfileobj(f, dest_file)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("File written successfully.")&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 07:45:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4732771#M10165</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-06-23T07:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: Script to create (or append new sheet) a new XLSX file in lakehouse Files directory</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4740309#M10355</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&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;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If we don’t hear back, we’ll go ahead and close this thread. For any further discussions or questions, please start a new thread in the Microsoft Fabric Community Forum&amp;nbsp; we’ll be happy to assist.&lt;/P&gt;
&lt;P&gt;Thank you for being part of the Microsoft Fabric Community.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 07:45:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Script-to-create-or-append-new-sheet-a-new-XLSX-file-in/m-p/4740309#M10355</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-06-23T07:45:35Z</dc:date>
    </item>
  </channel>
</rss>

