This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
We are announcing the deprecation of some features for Excel workbooks in Power BI workspaces.
This can impact organizations and users who use these capabilities. This blog outlines the changes, the timelines for deprecation, and how to update your workbooks. It also explains how to determine what workbooks in your organization are impacted.
What is changing for Excel workbook support in Power BI workspaces?
We will be retiring the following features of Excel workbooks in Power BI workspaces:
| Date | What happens |
| Beginning September 29, 2023 |
|
| Beginning October 31, 2023 |
|
| After October 31, 2023 |
|
What should you do if you’re affected by these changes?
We recommend using the following capabilities:
How can you know if your organization is impacted by this change?
As a Power BI Admin, you can use the new workbooks admin REST API to list the affected workbooks in your organization.
The API is:
The API lists all the workbooks that were uploaded to workspaces in your tenant. You can check if the Excel workbook is a local workbook by navigating to it it’s workspace and seeing if it has the Download Excel file option as shown below.GET https://api.powerbi.com/v1.0/myorg/admin/workbooks
For Sovereign Clouds customers, use your respective URL endpoint to call the API.
You can use PowerShell to get the results:
The output is a list of workbooks in your tenant.Invoke-PowerBIRestMethod -Url "https://api.powerbi.com/v1.0/myorg/admin/workbooks" -Method GET
Before you run the PowerShell cmdlet, install the MicrosoftPowerBIMgmt module and call Login-PowerBIServiceAccount. More detailed instructions are available in the Power BI Cmdlets reference | Microsoft Learn.[{
"DisplayName": "Workbook without a Data Model",
"WorkspaceName": "My workspace",
"HasDataModel": false,
"HasScheduledRefreshOnDataModel": false,
"UploadedOn": "2023-07-28T10:54:17.093"
},
{
"DisplayName": "Workbook with Data Model",
"WorkspaceName": "My workspace",
"HasDataModel": true,
"HasScheduledRefreshOnDataModel": true,
"UploadedBy": "user@contoso.com",
"UploadedOn": "2022-11-16T09:51:17.497"
}
]
Additionally, you can use the admin/Groups REST API with $expand=workbooks to identify workbooks. This is particularly useful for finding the Workspace ID of workspaces that contain workbooks.
What should you do if your Excel workbook is affected by these changes?Invoke-PowerBIRestMethod -Url ‘admin/Groups?$top=100&$expand=workbooks’ -Method Get
Use the Download Excel file option to download any local workbooks from your Power BI workspaces. You can add them to Power BI again by first saving them to OneDrive for Business or a SharePoint Document library (ODSP), and then importing the workbook from ODSP to the workspace.
A_screenshot_showing_the_Download_Excel_file_option_on_the_right-click_menu_for
You can publish your Excel data models to Power BI as a dataset to configure refresh for these data models. You can do this in Power BI service, in Excel, or in Power BI Desktop. We recommend using the Power BI Desktop File > Import > Power Query, Power Pivot, Power View option to import your model and then publish it as a dataset. This is preferred since it upgrades your data model to the latest version which gives you the best experiences.
To build new workbooks connected to the data model in your Excel workbook, you’ll first publish the data model as a Power BI dataset as described above. Then in Excel use the Data Ribbon > Get Data > From Power Platform > From Power BI (Microsoft) option to connect your workbook to the dataset.
For cases where you include a workbook in a Power BI organizational app, remember to update the app after making the changes.
Why are we changing how Excel files are supported in Power BI workspaces?
We find customers who use the deprecated capabilities are disproportionally affected by reliability issues and product limitations. This results in customer dissatisfaction and lost productivity. Most customers have already adopted alternative solutions that are well supported in Power BI, which are more reliable and provide better experiences.
We know changes like these have an impact on your organization. We’re here to help. Reach out on the blog or through your Microsoft representative if you need more information about these changes.
Updated 9/1/2023 - Updates for feedback from comments. Clarified refresh and schedule refresh changes apply to all workbooks, both local and those from OneDrive and SharePoint. Provided Sovereign Clouds information. Provided a method to find the Workspace ID.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.