<?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: EXCEL_DATA_SOURCE_NOT_ENABLED Excel data source is not enabled in this cluster in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/137844#M50824</link>
    <description>&lt;P&gt;&lt;SPAN&gt;hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/154226"&gt;@der&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for reaching out with your question, very interesting behavior.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I attempted to reproduce your issue using DBR 17.3 LTS but was unable to install the specific library version “&lt;EM&gt;dev.mauch:spark-excel_2.13:4.0.0_0.31.2.&lt;/EM&gt;” However, I installed the next available version, “&lt;EM&gt;dev.mauch:spark-excel_2.13:4.0.0_0.&lt;STRONG&gt;32.2-prerelease0&lt;/STRONG&gt;&lt;/EM&gt;.” &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;With this version, I was able to use the “spark.read.format(“excel”)” function without any issue.&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;spark.read.format("excel").load(excel_file)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;Aside from the links you shared, I couldn’t find documentation explaining why the error occurred with the “Excel” format. It appears that the issue may have been resolved in this newer version, possibly due to a missing internal registration. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I recommend updating your &lt;EM&gt;dev.mauch:spark-excel&lt;/EM&gt; library to the newer version. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Alternatively, you can handle Excel (xlsx) files using the Pandas API on Spark, with the &lt;A href="https://spark.apache.org/docs/latest/api/python/reference/pyspark.pandas/api/pyspark.pandas.read_excel.html" target="_self"&gt;read_excel function&lt;/A&gt;, then convert it to a spark dataframe using the code below; just ensure you have “&lt;A href="https://openpyxl.readthedocs.io/en/stable/" target="_self"&gt;openpyxl&lt;/A&gt;” installed (using pip install)&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;import pyspark.pandas as ps

df = ps.read_excel(excel_file)
sp_df = df.to_spark()
display(sp_df)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;I hope this helps and if it does, please Accept as Solution.&lt;BR /&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Wed, 05 Nov 2025 21:20:55 GMT</pubDate>
    <dc:creator>mmayorga</dc:creator>
    <dc:date>2025-11-05T21:20:55Z</dc:date>
    <item>
      <title>EXCEL_DATA_SOURCE_NOT_ENABLED Excel data source is not enabled in this cluster</title>
      <link>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/137578#M50767</link>
      <description>&lt;P&gt;I want to read an Excel xlsx file on DBR 17.3. On the Cluster the library&amp;nbsp;&lt;SPAN&gt;dev.mauch:spark-excel_2.13:4.0.0_0.31.2 is installed.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;V1 Implementation works fine:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;df = spark.read.format("dev.mauch.spark.excel").schema(schema).load(excel_file)
display(df)&lt;/LI-CODE&gt;&lt;P&gt;V2 throws&amp;nbsp;[EXCEL_DATA_SOURCE_NOT_ENABLED] Excel data source is not enabled in this cluster. SQLSTATE: 56038&lt;/P&gt;&lt;LI-CODE lang="python"&gt;df = spark.read.format("excel").schema(schema).load(excel_file)
display(df)&lt;/LI-CODE&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-gb/azure/databricks/error-messages/error-classes#excel_data_source_not_enabled" target="_blank"&gt;https://learn.microsoft.com/en-gb/azure/databricks/error-messages/error-classes#excel_data_source_not_enabled&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.databricks.com/aws/en/error-messages/excel-file-error-error-class" target="_blank" rel="noopener"&gt;https://docs.databricks.com/aws/en/error-messages/excel-file-error-error-class&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I wonder, why do we have specific excel error codes and how do we enable the excel data source?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 14:07:43 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/137578#M50767</guid>
      <dc:creator>der</dc:creator>
      <dc:date>2025-11-04T14:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: EXCEL_DATA_SOURCE_NOT_ENABLED Excel data source is not enabled in this cluster</title>
      <link>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/137599#M50773</link>
      <description>&lt;P&gt;If I build the spark-excel library with another short name (example "excelv2"), everything works fine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/nightscape/spark-excel/issues/896#issuecomment-3486861693" target="_blank"&gt;https://github.com/nightscape/spark-excel/issues/896#issuecomment-3486861693&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 16:26:28 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/137599#M50773</guid>
      <dc:creator>der</dc:creator>
      <dc:date>2025-11-04T16:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: EXCEL_DATA_SOURCE_NOT_ENABLED Excel data source is not enabled in this cluster</title>
      <link>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/137844#M50824</link>
      <description>&lt;P&gt;&lt;SPAN&gt;hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/154226"&gt;@der&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for reaching out with your question, very interesting behavior.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I attempted to reproduce your issue using DBR 17.3 LTS but was unable to install the specific library version “&lt;EM&gt;dev.mauch:spark-excel_2.13:4.0.0_0.31.2.&lt;/EM&gt;” However, I installed the next available version, “&lt;EM&gt;dev.mauch:spark-excel_2.13:4.0.0_0.&lt;STRONG&gt;32.2-prerelease0&lt;/STRONG&gt;&lt;/EM&gt;.” &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;With this version, I was able to use the “spark.read.format(“excel”)” function without any issue.&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;spark.read.format("excel").load(excel_file)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;Aside from the links you shared, I couldn’t find documentation explaining why the error occurred with the “Excel” format. It appears that the issue may have been resolved in this newer version, possibly due to a missing internal registration. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I recommend updating your &lt;EM&gt;dev.mauch:spark-excel&lt;/EM&gt; library to the newer version. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Alternatively, you can handle Excel (xlsx) files using the Pandas API on Spark, with the &lt;A href="https://spark.apache.org/docs/latest/api/python/reference/pyspark.pandas/api/pyspark.pandas.read_excel.html" target="_self"&gt;read_excel function&lt;/A&gt;, then convert it to a spark dataframe using the code below; just ensure you have “&lt;A href="https://openpyxl.readthedocs.io/en/stable/" target="_self"&gt;openpyxl&lt;/A&gt;” installed (using pip install)&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;import pyspark.pandas as ps

df = ps.read_excel(excel_file)
sp_df = df.to_spark()
display(sp_df)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;I hope this helps and if it does, please Accept as Solution.&lt;BR /&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 21:20:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/137844#M50824</guid>
      <dc:creator>mmayorga</dc:creator>
      <dc:date>2025-11-05T21:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: EXCEL_DATA_SOURCE_NOT_ENABLED Excel data source is not enabled in this cluster</title>
      <link>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/137909#M50830</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/127987"&gt;@mmayorga&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response. I can install both version, but both fail.&lt;/P&gt;&lt;P&gt;My current Azure Databricks cluster configuration json:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "cluster_name": "test spark-excel",
    "spark_version": "17.3.x-scala2.13",
    "node_type_id": "Standard_F4s",
    "autotermination_minutes": 60,
    "single_user_name": "abc@company.com",
    "data_security_mode": "DATA_SECURITY_MODE_DEDICATED",
    "runtime_engine": "STANDARD",
    "kind": "CLASSIC_PREVIEW",
    "is_single_node": true
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Package installation:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="der_0-1762419380757.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/21396i46E982B8A70D232C/image-size/large?v=v2&amp;amp;px=999" role="button" title="der_0-1762419380757.png" alt="der_0-1762419380757.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;How is your setup?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 09:09:09 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/137909#M50830</guid>
      <dc:creator>der</dc:creator>
      <dc:date>2025-11-06T09:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: EXCEL_DATA_SOURCE_NOT_ENABLED Excel data source is not enabled in this cluster</title>
      <link>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/137911#M50831</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/127987"&gt;@mmayorga&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another thing is the specific error message.&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-gb/azure/databricks/error-messages/error-classes#excel_data_source_not_enabled" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-gb/azure/databricks/error-messages/error-classes#excel_data_source_not_enabled&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I still not get it, why there is this specific "excel" error message?&lt;/P&gt;&lt;P&gt;if i run:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;spark.read.format("test").load(excel_file)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;The error message is different:&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Py4JJavaError: &lt;/SPAN&gt;&lt;SPAN&gt;An error occurred while calling o495.load. : org.apache.spark.SparkClassNotFoundException: [DATA_SOURCE_NOT_FOUND] Failed to find the data source: test. Make sure the provider name is correct and the package is properly registered and compatible with your Spark version. SQLSTATE: 42K02&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 09:19:06 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/137911#M50831</guid>
      <dc:creator>der</dc:creator>
      <dc:date>2025-11-06T09:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: EXCEL_DATA_SOURCE_NOT_ENABLED Excel data source is not enabled in this cluster</title>
      <link>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/138006#M50844</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/154226"&gt;@der&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First of all thank you for your patience and for providing more information about your case.&lt;/P&gt;
&lt;H1&gt;Use of ".format("excel")"&lt;/H1&gt;
&lt;P&gt;I replicated equally your cluster config in Azure. Without installing any library, I was able to run and load the xlsx file using ".format("excel")". Unfortunately the &lt;A href="https://spark.apache.org/docs/latest/sql-data-sources.html" target="_self"&gt;documentation&lt;/A&gt; does not mention about it, and at this point I'm not using "dev.mauch.spark.excel" library&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mmayorga_0-1762445991717.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/21417i836E4C1C409F8E10/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mmayorga_0-1762445991717.png" alt="mmayorga_0-1762445991717.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Then I proceeded to check the "SparkUI" and identified within the "SQL / Dataframe Properties" for "spark.databricks.sql.excel.enabled" with value "true".&lt;/P&gt;
&lt;P&gt;You can check this configuration by executing the following code:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;spark.conf.get("spark.databricks.sql.excel.enabled")&lt;/LI-CODE&gt;
&lt;P&gt;Next I disabled it to test it:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;spark.conf.set("spark.databricks.sql.excel.enabled","false")&lt;/LI-CODE&gt;
&lt;P&gt;With this configuration now I was able to replicate the issue:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mmayorga_1-1762446510138.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/21421i5D2047FD34229B0C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mmayorga_1-1762446510138.png" alt="mmayorga_1-1762446510138.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;With this said, please on your cluster, enable this configuration and try again to read the file&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;spark.conf.set("spark.databricks.sql.excel.enabled","true")&lt;/LI-CODE&gt;
&lt;H1&gt;&amp;nbsp;Use of ".format("dev.mauch.spark.excel)""&lt;/H1&gt;
&lt;P&gt;Then I installed the&amp;nbsp;"dev.mauch.spark.excel" and was also able to use it as well.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mmayorga_2-1762447091028.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/21422i0152807244B1B046/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mmayorga_2-1762447091028.png" alt="mmayorga_2-1762447091028.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H1&gt;Conclusion&lt;/H1&gt;
&lt;P&gt;This behavior highlights that these two implementations are separated and that ".format("excel")" leverages "spark.databricks.sql.excel" instead of the expected "dev.mauch.spark.excel". I agree that is a bit confusing while updating API versions where both use "excel" as format value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I hope this helps and if it does, please Accept as Solution.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 16:48:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/138006#M50844</guid>
      <dc:creator>mmayorga</dc:creator>
      <dc:date>2025-11-06T16:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: EXCEL_DATA_SOURCE_NOT_ENABLED Excel data source is not enabled in this cluster</title>
      <link>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/138448#M50928</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/127987"&gt;@mmayorga&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your insights.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not sure if the format "excel" has something to do with open source spark. I think this is more a Databricks thing spark.&lt;STRONG&gt;databricks&lt;/STRONG&gt;.sql.excel.enabled&lt;/P&gt;&lt;P&gt;Current state:&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%" height="30px"&gt;&lt;STRONG&gt;Databricks Runtime&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="16.666666666666668%" height="30px"&gt;&lt;STRONG&gt;Spark Excel&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="16.666666666666668%"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;default of config spark.databricks.sql.excel.enabled&lt;/STRONG&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;TD width="33.333333333333336%" height="30px"&gt;&lt;STRONG&gt;V2 Reader&amp;nbsp;.format("excel")&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%" height="30px"&gt;16.4.x-scala2.12&lt;/TD&gt;&lt;TD width="16.666666666666668%" height="30px"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;com.crealytics:spark-excel_2.12:3.5.0_0.20.3&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;TD width="16.666666666666668%"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;cannot be found&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;TD width="33.333333333333336%" height="30px"&gt;works&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%" height="30px"&gt;&lt;SPAN&gt;17.3.x-scala2.13&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="16.666666666666668%" height="30px"&gt;&lt;SPAN&gt;dev.mauch:spark-excel_2.13:4.0.0_0.31.2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="16.666666666666668%"&gt;&lt;SPAN&gt;false&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="33.333333333333336%" height="30px"&gt;&amp;nbsp;does not work&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;How to use V2 data source&amp;nbsp;&lt;SPAN&gt;.format("excel")&lt;/SPAN&gt; of&amp;nbsp;&lt;SPAN&gt;dev.mauch:spark-excel_2.13:4.0.0_0.31.2 with 17.3.x-scala2.13?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Nov 2025 16:56:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/138448#M50928</guid>
      <dc:creator>der</dc:creator>
      <dc:date>2025-11-10T16:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: EXCEL_DATA_SOURCE_NOT_ENABLED Excel data source is not enabled in this cluster</title>
      <link>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/141848#M51828</link>
      <description>&lt;P&gt;I reached out to Databricks support and they fixed it with December 2025 maintenance update. Now the open source excel reader and the new build in should work.&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-gb/azure/databricks/query/formats/excel" target="_blank"&gt;https://learn.microsoft.com/en-gb/azure/databricks/query/formats/excel&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Dec 2025 10:28:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/excel-data-source-not-enabled-excel-data-source-is-not-enabled/m-p/141848#M51828</guid>
      <dc:creator>der</dc:creator>
      <dc:date>2025-12-15T10:28:21Z</dc:date>
    </item>
  </channel>
</rss>

