Skip to content

Commit 3971d60

Browse files
committed
Merged main into live
2 parents 20b8bf5 + 535ad6d commit 3971d60

File tree

2 files changed

+64
-6
lines changed

2 files changed

+64
-6
lines changed

docs/boards/backlogs/office/tfs-office-integration-issues.md

Lines changed: 64 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,30 @@ ms.assetid: 819EA180-2BAC-46DB-A17E-A5179E6BEADC
77
ms.author: chcomley
88
author: chcomley
99
ms.topic: troubleshooting
10-
ms.date: 03/14/2025
10+
ms.date: 08/26/2025
1111
---
1212

1313
# Resolve Azure DevOps and Office integration issues
1414

1515
[!INCLUDE [version-lt-eq-azure-devops](../../../includes/version-lt-eq-azure-devops.md)]
1616

17-
If the **Team** ribbon is missing in Microsoft Excel, as shown in the following image, do the procedures in this article to resolve the issue.
17+
Azure DevOps integrates with Microsoft Office applications, primarily Excel and Project, to enable bulk editing and management of work items. This integration relies on the Azure DevOps Office Integration add-in, which adds a **Team** ribbon to your Office applications.
1818

1919
> [!div class="mx-imgBorder"]
2020
> ![Screenshot of Excel and Azure DevOps/Office integration Team ribbon.](media/excel-team-ribbon.png)
2121
22-
> [!NOTE]
23-
> The Azure DevOps Office integration is feature complete with no plans for updates or improvements. Future investments focus on native tooling for [bulk importing or updating work items using CSV files](../../queries/import-work-items-from-csv.md). If you encounter issues with the Office integration, consider using this alternative.
24-
> All Office integration tasks require an installed version of Visual Studio or the free [Azure DevOps Office Integration 2019](https://visualstudio.microsoft.com/downloads/#other-family), which installs the Azure DevOps Office Integration Add-in. For prerequisites, see [Azure Boards and Office integration](track-work.md).
22+
Common scenarios where you might encounter integration issues include:
23+
24+
- **Missing Team ribbon**: The Azure DevOps Team ribbon doesn't appear in Excel or other Office applications
25+
- **Add-in not loading**: The Azure DevOps add-in fails to load or is disabled
26+
- **Authentication problems**: Sign-in issues after password changes or organizational updates
27+
- **Publishing errors**: Data conflicts or validation errors when updating work items from Office
28+
- **Installation conflicts**: Issues arising from installing Office and Visual Studio in different orders
29+
30+
This article provides step-by-step solutions for the most common Azure DevOps Office integration problems. Before troubleshooting, ensure you have the necessary prerequisites and understand the current state of Office integration support.
31+
32+
> [!IMPORTANT]
33+
> The Azure DevOps Office integration is feature complete with no plans for updates or improvements. Microsoft recommends using [CSV import/export functionality](../../queries/import-work-items-from-csv.md) for bulk work item operations as the preferred modern approach.
2534
2635
[!INCLUDE [temp](../../includes/deprecate-project.md)]
2736

@@ -34,7 +43,7 @@ This tool allows you to connect to Azure Boards from Excel. To install the Azure
3443
1. Install the tool by running the downloaded file.
3544
1. Restart Excel to see the **Team** ribbon.
3645

37-
If you still don't see the **Team** ribbon, follow the steps in the following sections.
46+
If you still don't see the **Team** ribbon, do the steps in the following sections.
3847

3948
## Enable the Azure DevOps add-in
4049

@@ -232,6 +241,55 @@ You can use the Office Excel tools to find and resolve an error in a work item l
232241
- If the **Error Checking** dialog box shows another error, repeat the previous two steps to resolve the error.
233242
- If a message appears that indicates error checking completed, select **OK** to close both this message and the **Error Checking** dialog box.
234243

244+
## Resolve TF80070: An error occurred while performing the operation
245+
246+
The TF80070 error typically occurs due to assembly binding conflicts between different versions of the Newtonsoft.Json library used by Azure DevOps Office integration and other installed applications.
247+
248+
:::image type="content" source="../../media/error-tf80070.png" alt-text="Screenshot showing error message for TF80070.":::
249+
250+
### Symptoms
251+
252+
You might encounter this error when you:
253+
- Attempt to connect to Azure DevOps from Excel
254+
- Open or refresh work item lists in Excel
255+
- Publish changes from Excel to Azure DevOps
256+
257+
### Resolution
258+
259+
Resolve this issue by creating a configuration file that redirects assembly bindings to the correct version of the Newtonsoft.Json library.
260+
261+
1. Locate your Excel installation folder. The typical paths are:
262+
- **Microsoft 365/Office 2016-2021**: `C:\Program Files\Microsoft Office\root\Office16\`
263+
- **Office 2013**: `C:\Program Files\Microsoft Office\Office15\`
264+
- **Office 2010**: `C:\Program Files\Microsoft Office\Office14\`
265+
266+
2. Create a new text file in the Excel installation folder and name it `excel.exe.config`.
267+
268+
> [!IMPORTANT]
269+
> You need administrator privileges to create files in the Office installation directory. Right-click on **Notepad** and select **Run as administrator** before you create the file.
270+
271+
3. Add the following XML content to the `excel.exe.config` file:
272+
273+
```xml
274+
<?xml version="1.0" encoding="utf-8"?>
275+
<configuration>
276+
<runtime>
277+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
278+
<dependentAssembly>
279+
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30AD4FE6B2A6AEED" culture="neutral"/>
280+
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="13.0.0.0"/>
281+
</dependentAssembly>
282+
</assemblyBinding>
283+
</runtime>
284+
</configuration>
285+
```
286+
287+
4. Save the file and ensure it is named exactly `excel.exe.config` (not `excel.exe.config.txt`).
288+
289+
5. Close all Excel instances and restart Excel.
290+
291+
6. Test the connection by attempting to connect to Azure DevOps from Excel again.
292+
235293
## Related content
236294

237295
- [Bulk modify work items (web portal)](../bulk-modify-work-items.md)
108 KB
Loading

0 commit comments

Comments
 (0)