Skip to content

Commit 4db3f95

Browse files
[excel] (Tutorials) Convert tutorial titles to reflect scenarios instead of features (#677)
* Convert tutorial titles to reflect scenarios instead of features * Remove extra space * Shorter title * Apply suggestions from code review Co-authored-by: Elizabeth Samuel <[email protected]> * Apply suggestions from code review Co-authored-by: Elizabeth Samuel <[email protected]> --------- Co-authored-by: Elizabeth Samuel <[email protected]>
1 parent 2793234 commit 4db3f95

15 files changed

+73
-73
lines changed

docs/develop/best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ A [`throw`](https://developer.mozilla.org/docs/web/javascript/reference/statemen
109109

110110
However, if your script is running as part of a Power Automate flow, you may want to stop the flow from continuing. A `throw` statement stops the script and tells the flow to stop as well.
111111

112-
The following script shows how to use the `throw` statement in our table checking example.
112+
The following script shows how to use the `throw` statement in the table-checking example.
113113

114114
```TypeScript
115115
function main(workbook: ExcelScript.Workbook) {

docs/develop/pivottables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ There are three ways to filter a PivotTable.
117117

118118
### FilterPivotHierarchies
119119

120-
`FilterPivotHierarchies` add an additional hierarchy to filter every data row. Any row with an item that is filtered out is excluded from the PivotTable and its summaries. Since these filters are based on items, they only work on discrete values. If "Classification" is a filter hierarchy in our sample, users can select the values of "Organic" and "Conventional" for the filter. Similarly, if "Crates Sold Wholesale" is selected, the filter options would be the individual numbers, such as 120 and 150, instead of numerical ranges.
120+
`FilterPivotHierarchies` add an additional hierarchy to filter every data row. Any row with an item that is filtered out is excluded from the PivotTable and its summaries. Since these filters are based on items, they only work on discrete values. If "Classification" is a filter hierarchy in the sample, users can select the values of "Organic" and "Conventional" for the filter. Similarly, if "Crates Sold Wholesale" is selected, the filter options would be the individual numbers, such as 120 and 150, instead of numerical ranges.
121121

122122
`FilterPivotHierarchies` are created with all values selected. This means that nothing is filtered until the user manually interacts with the filter control or a `PivotManualFilter` is set on the field belonging to the `FilterPivotHierarchy`.
123123

docs/develop/power-automate-integration.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ If you are new to Power Automate, we recommend visiting [Get started with Power
1818

1919
There are three step-by-step tutorials for Power Automate and Office Scripts. These show how to combine the automate services and pass data between a workbook and a flow.
2020

21-
- [Call scripts from a manual Power Automate flow](../tutorials/excel-power-automate-manual.md)
22-
- [Pass data to scripts in an automatically-run Power Automate flow](../tutorials/excel-power-automate-trigger.md)
23-
- [Return data from a script to an automatically-run Power Automate flow](../tutorials//excel-power-automate-returns.md)
21+
- [Tutorial: Update a spreadsheet from a Power Automate flow](../tutorials/excel-power-automate-manual.md)
22+
- [Tutorial: Automatically save content from emails in a workbook](../tutorials/excel-power-automate-trigger.md)
23+
- [Tutorial: Send weekly email reminders based on spreadsheet data](../tutorials//excel-power-automate-returns.md)
2424

2525
### Create a flow from Excel
2626

@@ -68,7 +68,7 @@ Power Automate lets you pass pieces of data between flow actions. Scripts can be
6868

6969
Learn the details of how to pass data to and from your scripts with the following documentation.
7070

71-
- Learn by doing with the [Pass data to scripts in an automatically-run Power Automate flow](../tutorials/excel-power-automate-trigger.md) and [Return data from a script to an automatically-run Power Automate flow](../tutorials/excel-power-automate-returns.md) tutorials.
71+
- Learn by doing with [Tutorial: Automatically save content from emails in a workbook](../tutorials/excel-power-automate-trigger.md) and [Tutorial: Send weekly email reminders based on spreadsheet data](../tutorials/excel-power-automate-returns.md).
7272
- Try the [Automated task reminders](../resources/scenarios/task-reminders.md) sample scenario to see everything in action.
7373
- Read [Pass data to and from scripts in Power Automate](power-automate-parameters-returns.md) for more usage scenarios and the technical TypeScript details.
7474

@@ -101,7 +101,7 @@ function main(
101101

102102
## See also
103103

104-
- [Call scripts from a manual Power Automate flow](../tutorials/excel-power-automate-manual.md)
104+
- [Tutorial: Update a spreadsheet from a Power Automate flow](../tutorials/excel-power-automate-manual.md)
105105
- [Pass data to and from scripts in Power Automate](power-automate-parameters-returns.md)
106106
- [Troubleshooting information for Power Automate with Office Scripts](../testing/power-automate-troubleshooting.md)
107107
- [Get started with Power Automate](/power-automate/getting-started)

docs/develop/power-automate-parameters-returns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Acceptable types for returning data are the same as for parameters. Details on t
3838

3939
## See also
4040

41-
- [Call scripts from a manual Power Automate flow](../tutorials/excel-power-automate-manual.md)
41+
- [Tutorial: Update a spreadsheet from a Power Automate flow](../tutorials/excel-power-automate-manual.md)
4242
- [Get user input for scripts](user-input.md)
4343
- [Run Office Scripts with Power Automate](power-automate-integration.md)
4444
- [Troubleshooting information for Power Automate with Office Scripts](../testing/power-automate-troubleshooting.md)

docs/develop/scripting-fundamentals.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.localizationpriority: high
1010

1111
This article will introduce you to the technical aspects of Office Scripts. You'll learn the critical parts of the TypeScript-based script code and how the Excel objects and APIs work together.
1212

13-
If you would prefer to get started with an interactive experience, try the tutorial [Record, edit, and create Office Scripts in Excel](../tutorials/excel-tutorial.md) or visit our [samples](../resources/samples/samples-overview.md).
13+
If you would prefer to get started with an interactive experience, try [Tutorial: Create and format an Excel table](../tutorials/excel-tutorial.md) or visit our [samples](../resources/samples/samples-overview.md).
1414

1515
## TypeScript: The language of Office Scripts
1616

@@ -323,8 +323,8 @@ For information specific to the PivotTable object model, see [Work with PivotTab
323323

324324
## See also
325325

326-
- [Record, edit, and create Office Scripts in Excel](../tutorials/excel-tutorial.md)
327-
- [Read workbook data with Office Scripts in Excel](../tutorials/excel-read-tutorial.md)
326+
- [Tutorial: Create and format an Excel table](../tutorials/excel-tutorial.md)
327+
- [Tutorial: Clean and normalize Excel workbook data](../tutorials/excel-read-tutorial.md)
328328
- [Office Scripts API reference](/javascript/api/office-scripts/overview)
329329
- [Work with PivotTables in Office Scripts](pivottables.md)
330330
- [Using built-in JavaScript objects in Office Scripts](javascript-objects.md)

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Use Office Scripts in Excel to automate your common tasks. Explore the following
4040
</div>
4141
<div class="cardText">
4242
<h3>Getting started</h3>
43-
<p><a href="tutorials/excel-tutorial.md">Complete the tutorial to learn how to record, edit, and create Office Scripts in Excel.</a></p>
43+
<p><a href="tutorials/excel-tutorial.md">Create and format a table with Office Scripts.</a></p>
4444
</div>
4545
</div>
4646
</div>

docs/resources/samples/count-blank-rows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project includes two scripts:
1313
* [Count blank rows on all sheets](#sample-code-count-blank-rows-on-all-sheets): Traverses the used range on _all of the worksheets_ and returns a blank row count.
1414

1515
> [!NOTE]
16-
> For our script, a blank row is any row where there's no data. The row can have formatting.
16+
> For your script, a blank row is any row where there's no data. The row can have formatting.
1717
1818
_This sheet returns count of 4 blank rows_
1919

docs/resources/samples/range-samples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,4 +317,4 @@ We welcome suggestions for new samples. If there's a common scenario that would
317317

318318
* [Sudhi Ramamurthy's "Range basics" on YouTube](https://youtu.be/4emjkOFdLBA)
319319
* [Office Scripts samples and scenarios](samples-overview.md)
320-
* [Record, edit, and create Office Scripts in Excel](../../tutorials/excel-tutorial.md)
320+
* [Tutorial: Create and format an Excel table](../../tutorials/excel-tutorial.md)

docs/resources/vba-differences.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Office Scripts don't support Excel-level [events](/office/vba/excel/concepts/eve
4242

4343
VBA doesn't have a Power Automate connector. All supported VBA scenarios involve a user attending to the macro's execution.
4444

45-
Office Scripts can be run through Power Automate. Your workbook can be updated through scheduled or event-driven flows, letting you automate workflows without even opening Excel. Try the [Call scripts from a manual Power Automate flow](../tutorials/excel-power-automate-manual.md) tutorial to start learning about Power Automate. You can also check out the [Automated task reminders](scenarios/task-reminders.md) sample to see Office Scripts connected to Teams through Power Automate in a real-world scenario.
45+
Office Scripts can be run through Power Automate. Your workbook can be updated through scheduled or event-driven flows, letting you automate workflows without even opening Excel. Try [Tutorial: Update a spreadsheet from a Power Automate flow](../tutorials/excel-power-automate-manual.md) to start learning about Power Automate. You can also check out the [Automated task reminders](scenarios/task-reminders.md) sample to see Office Scripts connected to Teams through Power Automate in a real-world scenario.
4646

4747
## See also
4848

docs/toc.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ items:
88
href: overview/excel.md
99
- name: Tutorials
1010
items:
11-
- name: Learn the basics of Office Scripts
11+
- name: Create and format an Excel table
1212
href: tutorials/excel-tutorial.md
13-
- name: Read workbook data with a script
13+
- name: Clean and normalize Excel workbook data
1414
href: tutorials/excel-read-tutorial.md
15-
- name: Call scripts from a manual Power Automate flow
15+
- name: Update a spreadsheet from a Power Automate flow
1616
href: tutorials/excel-power-automate-manual.md
17-
- name: Use data in a script from an automatically-run Power Automate flow
17+
- name: Automatically save content from emails in a workbook
1818
href: tutorials/excel-power-automate-trigger.md
19-
- name: Pass data from a script to Power Automate flow
19+
- name: Send weekly email reminders based on spreadsheet data
2020
href: tutorials/excel-power-automate-returns.md
2121
- name: Script fundamentals
2222
href: develop/scripting-fundamentals.md
@@ -70,6 +70,8 @@ items:
7070
href: resources/samples/range-samples.md
7171
- name: Tables
7272
href: resources/samples/table-samples.md
73+
- name: Dates
74+
href: resources/samples/javascript-dates.md
7375
- name: Add comments
7476
href: resources/samples/add-excel-comments.md
7577
- name: Add images to a workbook
@@ -80,8 +82,6 @@ items:
8082
href: resources/samples/data-validation-samples.md
8183
- name: Create a workbook table of contents
8284
href: resources/samples/table-of-contents.md
83-
- name: JavaScript Dates
84-
href: resources/samples/javascript-dates.md
8585
- name: Remove table column filters
8686
href: resources/samples/clear-table-filter-for-active-cell.md
8787
- name: Report day-to-day changes in Power Automate

0 commit comments

Comments
 (0)