Skip to content

Commit 3d6e2d3

Browse files
[Admin] Remove support.office.com links (#749)
1 parent 2b4789a commit 3d6e2d3

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/overview/excel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ As an example, imagine at the start of each work day you open a .csv file from a
2828

2929
The Action Recorder records actions you take in Excel and saves them as a script. With the Action recorder running, you can capture the Excel actions as you edit cells, change formatting, and create tables. The resulting script can be run on other worksheets and workbooks to recreate your original actions.
3030

31-
More information about the Action Recorder can be found in the article [Record your actions as Office Script](https://support.microsoft.com/office/record-your-actions-as-office-scripts-453ab58d-708f-40a9-ab87-99a743bfa69a).
31+
More information about the Action Recorder can be found in the article [Record your actions as Office Script](https://support.microsoft.com/office/453ab58d-708f-40a9-ab87-99a743bfa69a).
3232

3333
## Code Editor
3434

@@ -75,5 +75,5 @@ Complete the [Office Scripts in Excel tutorial](../tutorials/excel-tutorial.md)
7575
- [Fundamentals for Office Scripts in Excel](../develop/scripting-fundamentals.md)
7676
- [Office Scripts API reference](/javascript/api/office-scripts/overview)
7777
- [Platform limits and requirements with Office Scripts](../testing/platform-limits.md)
78-
- [Office Scripts settings in M365](https://support.office.com/article/office-scripts-settings-in-m365-19d3c51a-6ca2-40ab-978d-60fa49554dcf)
78+
- [Office Scripts settings in M365](/microsoft-365/admin/manage/manage-office-scripts-settings)
7979
- [Sharing Office Scripts in Excel](https://support.microsoft.com/office/226eddbc-3a44-4540-acfe-fccda3d1122b)

docs/resources/samples/combine-worksheets-into-single-workbook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ interface WorksheetData {
117117
## Troubleshooting
118118

119119
- **A resource with the same name or identifier already exists**: This error likely indicates the "Combination.xlsx" workbook already has a worksheet with the same name. This will happen if you run the flow multiple times with the same workbooks. Create a new workbook each time to store the combined data or use different file names in the "output" folder.
120-
- **The argument is invalid or missing or has an incorrect format**: This error can mean that the generated worksheet name doesn't meet [Excel's requirements](https://support.microsoft.com/office/rename-a-worksheet-3f1f7148-ee83-404d-8ef0-9ff99fbad1f9). This is likely because the name is too long. If the worksheet names will be more than 30 characters replace the code in "Add worksheets" that calls `addWorksheet` with something that shortens the string. Since the workbook name itself might be too long, add an incrementing number to the end of the worksheet name. Declare this number outside of the `forEach` loop.
120+
- **The argument is invalid or missing or has an incorrect format**: This error can mean that the generated worksheet name doesn't meet [Excel's requirements](https://support.microsoft.com/office/3f1f7148-ee83-404d-8ef0-9ff99fbad1f9). This is likely because the name is too long. If the worksheet names will be more than 30 characters replace the code in "Add worksheets" that calls `addWorksheet` with something that shortens the string. Since the workbook name itself might be too long, add an incrementing number to the end of the worksheet name. Declare this number outside of the `forEach` loop.
121121

122122
```TypeScript
123123
let worksheetNumber = 1;

docs/testing/platform-limits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Excel on the web has the following limitations when making calls to the workbook
3232

3333
If you're encountering errors when dealing with large datasets, try using multiple smaller ranges instead of larger ranges. For an example, see the [Write a large dataset](../resources/samples/write-large-dataset.md) sample. You can also use APIs like [Range.getSpecialCells](/javascript/api/office-scripts/excelscript/excelscript.range#excelscript-excelscript-range-getspecialcells-member(1)) to target specific cells instead of large ranges.
3434

35-
Excel limits that aren't specific to Office Scripts can be found in the article [Excel specifications and limits](https://support.microsoft.com/office/excel-specifications-and-limits-1672b34d-7043-467e-8e27-269d656771c3).
35+
Excel limits that aren't specific to Office Scripts can be found in the article [Excel specifications and limits](https://support.microsoft.com/office/1672b34d-7043-467e-8e27-269d656771c3).
3636

3737
### Power Automate
3838

@@ -105,7 +105,7 @@ Using an older version of Excel to open workbooks with scripts shared in them ha
105105

106106
## See also
107107

108-
- [Excel specifications and limits](https://support.microsoft.com/office/excel-specifications-and-limits-1672b34d-7043-467e-8e27-269d656771c3)
108+
- [Excel specifications and limits](https://support.microsoft.com/office/1672b34d-7043-467e-8e27-269d656771c3)
109109
- [Troubleshoot Office Scripts](troubleshooting.md)
110110
- [Undo the effects of Office Scripts](undo.md)
111111
- [Improve the performance of your Office Scripts](../develop/web-client-performance.md)

docs/testing/undo.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Undo the changes made by Office Scripts
33
description: Use the version history of Excel to undo the changes made by running a script.
4-
ms.date: 10/01/2022
4+
ms.date: 06/17/2024
55
ms.localizationpriority: medium
66
---
77

@@ -13,12 +13,12 @@ You cannot undo changes made to the Excel workbook by a script with the Excel's
1313

1414
Office's version history is an easy way to restore an older workbook through the Excel UI. The feature only works for files stored in OneDrive or SharePoint Online.
1515

16-
From the Excel workbook in which the script was ran, use these steps to undo the effects:
16+
From the Excel workbook in which the script was run, use the following steps to undo the effects.
1717

1818
1. Go to **File** > **Info** > **Version History**.
19-
2. Select a version saved prior to the running the script.
20-
3. Select **Restore**.
19+
1. Select a version saved prior to the running the script.
20+
1. Select **Restore**.
2121

2222
## See also
2323

24-
- [View previous versions of Office files](https://support.office.com/article/View-previous-versions-of-Office-files-5c1e076f-a9c9-41b8-8ace-f77b9642e2c2#ID0EABBAAA=Web)
24+
- [View previous versions of Office files](https://support.microsoft.com/office/5c1e076f-a9c9-41b8-8ace-f77b9642e2c2)

0 commit comments

Comments
 (0)