Skip to content

Commit 9935ae8

Browse files
authored
Merge pull request #717 from OfficeDev/main
[admin] Publish
2 parents 78670cb + be64e87 commit 9935ae8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/resources/samples/write-large-dataset.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Write a large dataset
33
description: Learn how to split a large dataset into smaller write operations in Office Scripts.
4-
ms.date: 11/30/2023
4+
ms.date: 02/08/2024
55
ms.localizationpriority: medium
66
---
77

@@ -158,15 +158,15 @@ For this sample, you'll need to complete the following steps.
158158
1. Create and save both of the following scripts.
159159
1. Follow the steps under [Power Automate flow: Read and write data in a loop](#power-automate-flow-read-and-write-data-in-a-loop) to create the flow.
160160

161-
### Sample code: Read part of a workbook
161+
### Sample code: Read selected rows
162162

163163
```TypeScript
164164
function main(
165165
workbook: ExcelScript.Workbook,
166166
startRow: number,
167167
batchSize: number
168168
): string[][] {
169-
// This sample only reads the first worksheet in the workbook.
169+
// This script only reads the first worksheet in the workbook.
170170
const sheet = workbook.getWorksheets()[0];
171171

172172
// Get the boundaries of the range.
@@ -188,7 +188,7 @@ function main(
188188

189189
```
190190

191-
### Sample code: Read selected rows
191+
### Sample code: Write data at row location
192192

193193
```TypeScript
194194
function main(

docs/resources/scenarios/task-reminders.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You'll create a Power Automate flow to message people with missing status fields
2121

2222
## Prerequisites
2323

24-
This scenario uses [Power Automate](https://make.powerautomate.com) and [Microsoft Teams](https://www.microsoft.com/microsoft-teams/group-chat-software). You will need both associated with the account that you use for developing Office Scripts. For free access to a Microsoft Developer subscription to learn about and work with these applications, consider joining the [Microsoft 365 Developer Program](https://developer.microsoft.com/microsoft-365/dev-program).
24+
This scenario uses [Power Automate](https://make.powerautomate.com) and [Microsoft Teams](https://www.microsoft.com/microsoft-teams/group-chat-software).
2525

2626
## Setup instructions
2727

0 commit comments

Comments
 (0)