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/develop/user-input.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Get user input for scripts
3
3
description: Add parameters to Office Scripts so users can control their experience.
4
-
ms.date: 08/15/2023
4
+
ms.date: 08/22/2023
5
5
ms.localizationpriority: medium
6
6
---
7
7
@@ -12,7 +12,7 @@ Adding parameters to your script lets other users provide data for the script, w
12
12
:::image type="content" source="../images/user-input-example.png" alt-text="The dialog box shown to users when a script with parameters is run.":::
13
13
14
14
> [!IMPORTANT]
15
-
> Currently, users will only be prompted to enter data for parameterized scripts in Excel on the web. Power Automate flows also support giving data to scripts through parameters.
15
+
> Currently, only select users in preview will be prompted to enter data for parameterized scripts in Excel on the web. Power Automate flows also support giving data to scripts through parameters.
16
16
17
17
## Example - Highlight large values
18
18
@@ -37,9 +37,9 @@ function main(
37
37
const rangeValues =usedRange.getValues();
38
38
for (let row =0; row<rangeValues.length; row++) {
39
39
for (let column =0; column<rangeValues[row].length; column++) {
40
-
if (rangeValues[row][column] >=highlightThreshold) {
0 commit comments