Skip to content

Commit 3f9c144

Browse files
committed
review so far
1 parent 23cd88e commit 3f9c144

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
Fields of the record currently being processed are available within the formula. Use the [**ThisRecord** operator](../maker/canvas-apps/functions/operators.md#thisitem-thisrecord-and-as-operators) or simply reference fields by name as you would any other value. The [**As** operator](../maker/canvas-apps/functions/operators.md#thisitem-thisrecord-and-as-operators) can also be used to name the record being processed which can help make your formula easier to understand and make nested records accessible. For more details, see the examples below and [working with record scope](../maker/canvas-apps/working-with-tables.md#record-scope).
2-
1+
Fields of the record currently being processed are available within the formula. Use the [**ThisRecord** operator](../maker/canvas-apps/functions/operators.md#thisitem-thisrecord-and-as-operators) or simply reference fields by name as you would any other value. The [**As** operator](../maker/canvas-apps/functions/operators.md#thisitem-thisrecord-and-as-operators) can also be used to name the record being processed which can help make your formula easier to understand and make nested records accessible. For more information, see the examples below and [working with record scope](../maker/canvas-apps/working-with-tables.md#record-scope).

powerapps-docs/maker/canvas-apps/functions/function-astype-istype.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ Common Data Service also supports polymorphic lookup fields, which can refer to
3333
| **Customer** | **Accounts** or **Contacts** |
3434
| **Regarding** | **Accounts**, **Contacts**, **Knowledge Articles**, etc. |
3535

36-
<!--note from editor: Change "Knowledge Articles" to "Knowledge Base articles" if that is what is being referenced. -->
37-
3836
In canvas-app formulas, use record references to work with polymorphic lookups. Because a record reference can refer to different entities, you don't know which fields will be available when you write a formula. The *Record.Field* notation isn't available. Those formulas must adapt to the records that the app encounters when it runs.
3937

4038
The **IsType** function tests whether a record reference refers to a specific entity type. The function returns a Boolean TRUE or FALSE.

powerapps-docs/maker/canvas-apps/functions/function-sequence.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ ForAll( Sequence( 10 ), Collect( MyRandomNumbers, Rand() ) )
3232
ForAll( Sequence( 10 ), DateAdd( Today(), Value, Days ) )
3333
```
3434

35-
The number of records to generate is rounded down to the nearest whole number and must be in the range 0 to 50,000. Generating a table with 0 records results in an *empty* table.
35+
The number of records to generate is rounded down to the nearest whole number and must be in the range 0 to 50,000. Generating a table with zero records results in an *empty* table.
3636

37-
> [!NOTE]
37+
> [!NOTE]
3838
> **Sequence** is limited to 50,000 records.
3939
4040
## Syntax
4141
**Sequence**( *Records* [, *Start* [, *Step* ] ] )
4242

43-
* *Records* – Required. The number of records to create. Must be in the range 0 to 50,000.
44-
* *Start* – Optional. The starting number for the sequence. Default is 1.
43+
* *Records* – Required. The number of records to create. Must be in the range 0 to 50,000.
44+
* *Start* – Optional. The starting number for the sequence. Default is 1.
4545
* *Step* – Optional. The increment for each successive number in the sequence. *Step* can be negative to count down from the *Start*. Default is 1.
4646

4747
## Examples
@@ -60,11 +60,8 @@ The number of records to generate is rounded down to the nearest whole number an
6060

6161
### Character map
6262

63-
See the [**Char**](function-char.md#display-a-character-map) function reference for two **Sequence** functions working together to display a character map in a two dimensional layout.
63+
See the [**Char**](function-char.md#display-a-character-map) function reference for two **Sequence** functions working together to display a character map in a two-dimensional layout.
6464

6565
### Chessboard
6666

6767
See the [**As**](operators.md#as-operator) operator reference for two **Sequence** functions working together to create a chessboard in a text string and in two nested galleries.
68-
69-
70-

0 commit comments

Comments
 (0)