You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/resources/samples/copy-tables-combine.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
2
title: Combine data from multiple Excel tables into a single table
3
3
description: Learn how to use Office Scripts to combine data from multiple Excel tables into a single table.
4
-
ms.date: 06/29/2021
4
+
ms.date: 08/14/2025
5
5
ms.localizationpriority: medium
6
6
---
7
7
8
8
# Combine data from multiple Excel tables into a single table
9
9
10
-
This sample combines data from multiple Excel tables into a single table that includes all the rows. It assumes that all tables being used have the same structure.
10
+
This sample shows how to combine data from multiple Excel tables into a single table that includes all the rows. It assumes that all the tables being used have the same structure.
11
11
12
12
There are two variations of this script:
13
13
@@ -49,7 +49,7 @@ function main(workbook: ExcelScript.Workbook) {
49
49
let dataValues =table.getRangeBetweenHeaderAndTotal().getTexts();
50
50
let rowCount =table.getRowCount();
51
51
52
-
// If the table is not empty, add its rows to the combined table.
52
+
// If the table isn't empty, add its rows to the combined table.
0 commit comments