<?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>article [PARTNER BLOG] Access Databricks Data Natively in Excel Using the New Excel Add-in in Technical Blog</title>
    <link>https://community.databricks.com/t5/technical-blog/partner-blog-access-databricks-data-natively-in-excel-using-the/ba-p/151969</link>
    <description>&lt;H1&gt;&lt;FONT size="5" color="#000000"&gt;Introduction&lt;/FONT&gt;&lt;/H1&gt;
&lt;P&gt;If you have spent any time working with enterprise data, you know the struggle: your Lakehouse holds the ground truth, but business stakeholders live in Excel. Until now, bridging that gap meant manual exports, scheduled jobs, or CSV files that drift out of sync the moment they land on someone's desktop. The Azure Databricks Excel Add-in solves this. Now in Public Preview, it connects your Databricks workspace directly to Excel, letting you browse Unity Catalog tables, run SQL queries, and pull live Lakehouse data into a spreadsheet without ever leaving Excel. No SQL knowledge is required for basic table imports, and full custom query support is available for power users. This guide covers everything you need: prerequisites, two installation paths, and how to start querying your data.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="5" color="#000000"&gt;Prerequisites&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Databricks Requirements&lt;/FONT&gt;&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;An Azure Databricks workspace with Unity Catalog enabled&lt;/LI&gt;
&lt;LI&gt;Access to a running SQL Warehouse — classic or serverless&lt;/LI&gt;
&lt;LI&gt;Read permissions on Unity Catalog tables in your workspace&lt;/LI&gt;
&lt;LI&gt;You are using one of the following versions of Excel:
&lt;UL&gt;
&lt;LI&gt;Excel 2019 or later on Mac&lt;/LI&gt;
&lt;LI&gt;Excel on Windows (Microsoft 365)&lt;/LI&gt;
&lt;LI&gt;Excel on the web&lt;/LI&gt;
&lt;LI&gt;Excel on Mac (Microsoft 365)&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;UL&gt;
&lt;LI&gt;If you use a firewall or a cloud security platform, allowlist the Azure Databricks workspace URLs included in the add-in file.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Authentication&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;The add-in uses Single Sign-On (SSO) exclusively. Personal Access Tokens (PAT) and Service Principals are not supported in this release. You will sign in with your Azure Databricks credentials when you first open the add-in pane.&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Excel Platform Support&lt;/FONT&gt;&lt;/H2&gt;
&lt;UL&gt;
&lt;LI&gt;Excel for the Web — fully supported&lt;/LI&gt;
&lt;LI&gt;Excel Desktop on Windows — fully supported&lt;/LI&gt;
&lt;LI&gt;Excel Desktop on macOS — fully supported&lt;/LI&gt;
&lt;/UL&gt;
&lt;H1&gt;&lt;FONT size="5" color="#000000"&gt;&lt;STRONG&gt;Step 1: Set up the add-in file&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H1&gt;
&lt;P&gt;The add-in requires a small XML manifest file. This file acts as the connector that tells Excel where Databricks lives and how to load the add-in securely every time Excel opens.&lt;BR /&gt;Save the page as an&amp;nbsp;.xml&amp;nbsp;file to your local machine. In most browsers, right-click the page and select&amp;nbsp;&lt;STRONG&gt;Save as&lt;/STRONG&gt;, or press&amp;nbsp;Ctrl+S&amp;nbsp;(Windows) or&amp;nbsp;Command+S&amp;nbsp;(macOS).&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;You must download and set up the add-in file to use the Azure Databricks Excel Add-in.&lt;BR /&gt;Download the&amp;nbsp; add- in file by clicking the following link: &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/_extras/documents/databricks-excel-manifest-azure.xml" target="_blank" rel="noopener"&gt;Azure Databricks Excel add-in file&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Save the page as an&amp;nbsp;.xml&amp;nbsp;file to your local machine. In most browsers, right-click the page and select&amp;nbsp;&lt;STRONG&gt;Save as&lt;/STRONG&gt;, or press&amp;nbsp;Ctrl+S&amp;nbsp;(Windows) or&amp;nbsp;Command+S&amp;nbsp;(macOS).&lt;/LI&gt;
&lt;LI&gt;Once downloaded, open the file in any text editor and add your workspace URL inside the AppDomains section:&lt;/LI&gt;
&lt;/OL&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;AppDomains&amp;gt;
   &amp;lt;!-- DO NOT CHANGE --&amp;gt;
   &amp;lt;AppDomain&amp;gt;https://www.databricks.com&amp;lt;/AppDomain&amp;gt;
   &amp;lt;AppDomain&amp;gt;https://login.databricks.com&amp;lt;/AppDomain&amp;gt;
   &amp;lt;!-- ADD WORKSPACE URLS AS SHOWN BELOW; PUT EACH WORKSPACE URL IN ITS OWN &amp;lt;AppDomain&amp;gt; TAG  --&amp;gt;
   &amp;lt;!-- EXAMPLE --&amp;gt;
   // highlight-next-line
   &amp;lt;AppDomain&amp;gt;https://adb-&amp;lt;workspace1-id&amp;gt;.&amp;lt;random-number&amp;gt;.azuredatabricks.net&amp;lt;/AppDomain&amp;gt;
   // highlight-next-line
   &amp;lt;AppDomain&amp;gt;https://adb-&amp;lt;workspace2-id&amp;gt;.&amp;lt;random-number&amp;gt;.azuredatabricks.net&amp;lt;/AppDomain&amp;gt;
&amp;lt;/AppDomains&amp;gt;
​&lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;Tip: &lt;/STRONG&gt;&lt;/FONT&gt;To connect to multiple workspaces, add each workspace URL as a separate AppDomain entry in the same file.Save the file and confirm it still carries the .xml extension before proceeding.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;H1&gt;&lt;FONT size="5" color="#000000"&gt;Option 1: Excel for the Web (Easiest)&lt;/FONT&gt;&lt;/H1&gt;
&lt;P&gt;Excel Web is the fastest path to get started. No folder configuration or system settings are required. These steps also work even if Add-ins have been disabled by your organization’s IT policy.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open a workbook in Excel for the Web.&lt;/LI&gt;
&lt;LI&gt;Under the Home tab, click &lt;STRONG&gt;Add-ins&lt;/STRONG&gt; (all the way on the right), then click &lt;STRONG&gt;Advanced…&lt;BR /&gt;&lt;/STRONG&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_18-1774424237044.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25249iFCB9BEE304C81CD8/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_18-1774424237044.png" alt="VasaviKS_18-1774424237044.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;LI&gt;Click on “upload My Add-in”&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_19-1774424237046.png" style="width: 754px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25248iD38D35AA9D9ED152/image-dimensions/754x412?v=v2" width="754" height="412" role="button" title="VasaviKS_19-1774424237046.png" alt="VasaviKS_19-1774424237046.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Upload the Add-On file (.xml) that was shared with you&lt;/LI&gt;
&lt;LI&gt;Open ‘Add-on’ -&amp;gt; If you see an error make sure to enable pop-ups&lt;/LI&gt;
&lt;LI&gt;Find and click the Azure Databricks Add-in from the&amp;nbsp;&lt;STRONG&gt;Add-ins&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;menu.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;Sign in to your Azure Databricks account. If there is an error, make sure to enable pop-up dialogs.&lt;/LI&gt;
&lt;LI&gt;If you configured multiple workspace URLs, select the desired Azure Databricks account name. You only need to select a specific workspace if the URLs are within the same account.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H1&gt;&lt;FONT size="5" color="#000000"&gt;Option 2: Excel Desktop on Windows&lt;/FONT&gt;&lt;/H1&gt;
&lt;P&gt;On Windows Desktop, the add-in is installed by registering a shared folder as a trusted add-in catalog in Excel's Trust Center. This method works even when the Office Store is blocked by your organisation.&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Step 1: Open Windows File Explorer&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;Press &lt;STRONG&gt;Win + E&lt;/STRONG&gt; to open Windows File Explorer. You will see your Home view with Quick Access folders listed.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_20-1774424237058.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25250i89E1A7B1380C27FC/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_20-1774424237058.png" alt="VasaviKS_20-1774424237058.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Step 2:&amp;nbsp; Navigate to This PC&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;In the left sidebar, click &lt;STRONG&gt;This PC&lt;/STRONG&gt;. You will see your local drives and any network locations.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_21-1774424237075.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25252iA65B6ABD3D758CF8/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_21-1774424237075.png" alt="VasaviKS_21-1774424237075.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Step 3: Open Local Disk (C:)&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;Double-click &lt;STRONG&gt;Local Disk (C:)&lt;/STRONG&gt; to navigate into your C drive root.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_22-1774424237081.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25251i79881DF123A34AFD/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_22-1774424237081.png" alt="VasaviKS_22-1774424237081.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Step 4: Create the Manifest folder and add the XML file&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;Inside the C: drive, create a new folder named &lt;STRONG&gt;Manifest&lt;/STRONG&gt;. Then copy or move your .xml manifest file (prepared in Step 1) into this folder.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_23-1774424237092.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25253i605E5562E98DF266/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_23-1774424237092.png" alt="VasaviKS_23-1774424237092.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_24-1774424237098.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25256i3564021CE2DD5694/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_24-1774424237098.png" alt="VasaviKS_24-1774424237098.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Step 5: Open Folder Properties and enable Sharing&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;Right-click the &lt;STRONG&gt;Manifest&lt;/STRONG&gt; folder and select &lt;STRONG&gt;Properties&lt;/STRONG&gt;. The Properties dialog will open showing file details.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_25-1774424237100.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25254i68F07D7E4220113E/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_25-1774424237100.png" alt="VasaviKS_25-1774424237100.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_26-1774424237105.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25255i63EF2C027B687C0F/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_26-1774424237105.png" alt="VasaviKS_26-1774424237105.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Step 6 : Share the folder and copy the network path&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;Click the &lt;STRONG&gt;Sharing&lt;/STRONG&gt; tab, then click &lt;STRONG&gt;Share&lt;/STRONG&gt;. In the sharing dialog, add yourself as a user and grant &lt;STRONG&gt;Read/Write&lt;/STRONG&gt; permissions. Click &lt;STRONG&gt;Share&lt;/STRONG&gt; to confirm.After sharing completes, a confirmation screen will show the network path for the folder (e.g. \\YourComputerName\Manifest). &lt;STRONG&gt;Copy this path — you will need it in the next step.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_27-1774424237107.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25257iF6D0EB733E53F612/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_27-1774424237107.png" alt="VasaviKS_27-1774424237107.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Step 7: Open Excel Trust Center Settings&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;Open Excel Desktop. Go to &lt;STRONG&gt;File → Options → Trust Center → Trust Center Settings&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_28-1774424237117.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25259i90BBB38B17B3D5B3/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_28-1774424237117.png" alt="VasaviKS_28-1774424237117.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_29-1774424237126.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25258iAE5E4F86396A101C/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_29-1774424237126.png" alt="VasaviKS_29-1774424237126.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_30-1774424237133.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25262iE72FB9A5124C785F/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_30-1774424237133.png" alt="VasaviKS_30-1774424237133.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Step 8:&amp;nbsp; Select Trusted Add-in Catalogs&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;In the Trust Center sidebar, click &lt;STRONG&gt;Trusted Add-in Catalogs&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_31-1774424237135.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25260iFACC68D63B5AED96/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_31-1774424237135.png" alt="VasaviKS_31-1774424237135.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_32-1774424237137.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25261iB66CE0D545881D66/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_32-1774424237137.png" alt="VasaviKS_32-1774424237137.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_33-1774424237138.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25263i458C992C6145E3D4/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_33-1774424237138.png" alt="VasaviKS_33-1774424237138.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Step 9:&amp;nbsp; Enter the network path and add the catalog&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;In the &lt;STRONG&gt;Catalog Url&lt;/STRONG&gt; field, paste the network path you copied in Step 6 (e.g. \\YourComputerName\Manifest). Then click &lt;STRONG&gt;Add catalog&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_34-1774424237140.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25264iF51D8147C89193E7/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_34-1774424237140.png" alt="VasaviKS_34-1774424237140.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H2&gt;&lt;FONT color="#000000"&gt;s&lt;FONT size="4"&gt;tep 10: Check "Show in Menu" and click OK&lt;/FONT&gt;&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;Once the catalog appears in the Trusted Catalogs Table, check the &lt;STRONG&gt;Show in Menu&lt;/STRONG&gt; checkbox for your catalog entry. Click &lt;STRONG&gt;OK&lt;/STRONG&gt; to save all Trust Center settings.&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Step 11: Close and reopen Excel&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;Close Excel completely and reopen it. The Trust Center changes do not take effect until Excel is restarted.&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Step 12: Load the Databricks connector from Shared Folder&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;After restarting Excel, click &lt;STRONG&gt;Add-ins → More Add-ins → Shared Folder&lt;/STRONG&gt;. You will see the Databricks connector listed under your shared folder.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="VasaviKS_35-1774424237146.png" style="width: 999px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/25265iC66955F7F9E0347E/image-size/large?v=v2&amp;amp;px=999" role="button" title="VasaviKS_35-1774424237146.png" alt="VasaviKS_35-1774424237146.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Select the &lt;STRONG&gt;Databricks connector&lt;/STRONG&gt; and click &lt;STRONG&gt;Add&lt;/STRONG&gt;. The add-in pane will open on the right side of your workbook.&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Step 13: Sign in to your Databricks account&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;With the add-in pane open, click sign in. Authenticate using your Azure Databricks SSO credentials. Once signed in, you will be connected to your workspace and ready to query data.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note: &lt;/STRONG&gt;If a dialog appears saying "The security settings in your browser prevent us from creating a dialog box", click OK and try a different browser, or configure the browser so that the Databricks staging domain and your Excel domain are in the same security zone.&lt;/P&gt;
&lt;H1&gt;&lt;FONT size="5" color="#000000"&gt;Option 3: Admin managed&lt;/FONT&gt;&lt;/H1&gt;
&lt;P&gt;As a global admin, you can download and configure the Azure Databricks Excel Add-in and deploy it to other users in your organization. Download and set up the add-in file provided in the&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/azure/databricks/integrations/excel-setup#xml-prereqs" target="_blank" rel="noopener"&gt;Prerequisites&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;To install the Azure Databricks Excel Add-in as a Microsoft 365 Admin, you must have the&amp;nbsp;global admin&amp;nbsp;permission. As an admin, you can determine which users in your organization can use add-ins. For more about global admins on Microsoft 365, see the&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/entra/identity/role-based-access-control/permissions-reference#global-administrator" target="_blank" rel="noopener"&gt;Microsoft documentation&lt;/A&gt;.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;In the Microsoft 365 admin center, go to&amp;nbsp;&lt;STRONG&gt;Settings &amp;gt; Integrated apps&lt;/STRONG&gt;&amp;nbsp;and click the&amp;nbsp;&lt;STRONG&gt;Add-ins&lt;/STRONG&gt;&amp;nbsp;link.&lt;/LI&gt;
&lt;LI&gt;Click&amp;nbsp;&lt;STRONG&gt;Deploy Add-in&lt;/STRONG&gt;&amp;nbsp;and click&amp;nbsp;&lt;STRONG&gt;Next&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Select&amp;nbsp;&lt;STRONG&gt;Upload custom apps&lt;/STRONG&gt;&amp;nbsp;as the option to deploy a new add-in.&lt;/LI&gt;
&lt;LI&gt;Select the option to upload a manifest. Click&amp;nbsp;&lt;STRONG&gt;Choose File&lt;/STRONG&gt;&amp;nbsp;and upload the add-in file.&lt;/LI&gt;
&lt;LI&gt;Choose which users should have access to the add-in.&lt;/LI&gt;
&lt;LI&gt;Click&amp;nbsp;&lt;STRONG&gt;Deploy&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;For detailed steps about uploading the Azure Databricks Excel Add-in, see the&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/microsoft-365/admin/manage/manage-deployment-of-add-ins" target="_blank" rel="noopener"&gt;Microsoft documentation&lt;/A&gt;.&lt;/P&gt;
&lt;H1&gt;&lt;FONT size="5" color="#000000"&gt;What You Can Do with the Add-in&lt;/FONT&gt;&lt;/H1&gt;
&lt;P&gt;Once connected, the add-in gives you several ways to pull Lakehouse data into your spreadsheet.&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Import a Table Directly&lt;/FONT&gt;&lt;/H2&gt;
&lt;OL&gt;
&lt;LI&gt;Open the add-in pane and specify a Unity Catalog table (catalog.schema.table).&lt;/LI&gt;
&lt;LI&gt;Optionally select specific columns and set a row limit.&lt;/LI&gt;
&lt;LI&gt;Click Import Table. Data lands in your active sheet immediately.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Pivot Data&lt;/FONT&gt;&lt;/H2&gt;
&lt;OL&gt;
&lt;LI&gt;Specify a table or UC Metric View in the add-in.&lt;/LI&gt;
&lt;LI&gt;Select Pivot Data.&lt;/LI&gt;
&lt;LI&gt;Configure rows, columns, values, and filters.&lt;/LI&gt;
&lt;LI&gt;Click Import.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Write a Custom SQL Query&lt;/FONT&gt;&lt;/H2&gt;
&lt;OL&gt;
&lt;LI&gt;Click Write SQL Query in the add-in pane.&lt;/LI&gt;
&lt;LI&gt;Browse the catalog to find your table paths, then write your SQL.&lt;/LI&gt;
&lt;LI&gt;Run and preview, then click Import Data into the sheet.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H2&gt;&lt;FONT size="4" color="#000000"&gt;Custom Excel Functions&lt;/FONT&gt;&lt;/H2&gt;
&lt;P&gt;The add-in registers two Excel functions you can type directly into cells:&lt;/P&gt;
&lt;P&gt;Table import:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;=DATABRICKS.Table("catalog.schema.table", [columns], [limit])&lt;/LI-CODE&gt;
&lt;P&gt;SQL query with optional parameters:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;=DATABRICKS.SQL("SELECT * FROM table WHERE id=:id", {"id", 123})&lt;/LI-CODE&gt;
&lt;P&gt;Parameters can also be supplied as a cell range (e.g. A1:B2), where column A holds parameter names and column B holds values.&lt;/P&gt;
&lt;H1&gt;&lt;FONT size="5" color="#000000"&gt;Known Limitations&lt;/FONT&gt;&lt;/H1&gt;
&lt;UL&gt;
&lt;LI&gt;Workspace switching (selecting between multiple workspaces at runtime) is not yet available in self-service mode — it is planned as a future feature.&lt;/LI&gt;
&lt;LI&gt;Scheduled refresh is not yet available.&lt;/LI&gt;
&lt;LI&gt;Genie (AI-powered query assistance) integration is not yet available.&lt;/LI&gt;
&lt;/UL&gt;
&lt;H1&gt;&lt;FONT size="5" color="#000000"&gt;Summary&lt;/FONT&gt;&lt;/H1&gt;
&lt;P&gt;The Databricks Excel Add-in is a clean, low-friction way to bring governed Lakehouse data into the tool your business stakeholders use every day. Installation is lightweight, authentication is handled entirely via SSO, and the feature set covers everything from simple table imports to parameterized SQL queries and custom cell functions.For teams already running Unity Catalog, this is a direct path to surfacing trusted data in Excel — without manual exports, file copies, or pipelines that drift out of sync.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Apr 2026 08:57:34 GMT</pubDate>
    <dc:creator>VasaviKS</dc:creator>
    <dc:date>2026-04-28T08:57:34Z</dc:date>
    <item>
      <title>[PARTNER BLOG] Access Databricks Data Natively in Excel Using the New Excel Add-in</title>
      <link>https://community.databricks.com/t5/technical-blog/partner-blog-access-databricks-data-natively-in-excel-using-the/ba-p/151969</link>
      <description>&lt;P class=""&gt;&lt;STRONG&gt;Access Databricks Data Natively in Excel Using the New Excel Add-in&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class=""&gt;Business stakeholders live in Excel, but your ground truth lives in the Lakehouse. Databricks Excel Add-in (now in Public Preview) bridges that gap directly. Browse Unity Catalog tables, run SQL queries and load live data into Excel without manual exports or CSV files that go stale. This&amp;nbsp;Article covers prerequisites, installation, and how to start querying your data using Excel Add-ins.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2026 08:57:34 GMT</pubDate>
      <guid>https://community.databricks.com/t5/technical-blog/partner-blog-access-databricks-data-natively-in-excel-using-the/ba-p/151969</guid>
      <dc:creator>VasaviKS</dc:creator>
      <dc:date>2026-04-28T08:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: [PARTNER BLOG] Access Databricks Data Natively in Excel Using the New Excel Add-in</title>
      <link>https://community.databricks.com/t5/technical-blog/partner-blog-access-databricks-data-natively-in-excel-using-the/bc-p/157952#M1084</link>
      <description>&lt;P&gt;Thanks for this guidance. This is so specific and useful. I setup successfully, but I got the error message as below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-05-27 130722.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/27404iF015F6DB3A38152A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2026-05-27 130722.png" alt="Screenshot 2026-05-27 130722.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I connected to my workspace and see all tables in catalog successfully, the only thing left is the failure when run the query. How can I fix this? Gemini said that maybe it was blocked by firewall security of IT department&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 30 May 2026 01:56:17 GMT</pubDate>
      <guid>https://community.databricks.com/t5/technical-blog/partner-blog-access-databricks-data-natively-in-excel-using-the/bc-p/157952#M1084</guid>
      <dc:creator>QVietHoang</dc:creator>
      <dc:date>2026-05-30T01:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: [PARTNER BLOG] Access Databricks Data Natively in Excel Using the New Excel Add-in</title>
      <link>https://community.databricks.com/t5/technical-blog/partner-blog-access-databricks-data-natively-in-excel-using-the/bc-p/158136#M1089</link>
      <description>&lt;P&gt;It works fine but table fields with data type numeric are imported into excel as text formatted fields. It is cumbersome to change formatting for every numeric column. Date fields are imported correctly.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2026 13:13:26 GMT</pubDate>
      <guid>https://community.databricks.com/t5/technical-blog/partner-blog-access-databricks-data-natively-in-excel-using-the/bc-p/158136#M1089</guid>
      <dc:creator>SA_MOV</dc:creator>
      <dc:date>2026-06-02T13:13:26Z</dc:date>
    </item>
  </channel>
</rss>

