Skip to content

Commit 7315252

Browse files
committed
updates
1 parent 2f90181 commit 7315252

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ Common Data Service also supports polymorphic lookup fields, which can refer to
3535

3636
<!--note from editor: Change "Knowledge Articles" to "Knowledge Base articles" if that is what is being referenced. -->
3737

38-
In canvas-app formulas, you can 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 *.Field* notation isn't available. Those formulas must adapt to the records that the app encounters when it runs.
38+
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.
3939

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

42-
The **AsType** function treats a record reference as a specific entity type, sometimes referred to as *casting*. You can use the result as if it were a record of the entity and, again, use the *.Field* notation to access all of the fields of that record. An error occurs if the reference isn't of the specific type.
42+
The **AsType** function treats a record reference as a specific entity type, sometimes referred to as *casting*. You can use the result as if it were a record of the entity and again use the *Record.Field* notation to access all of the fields of that record. An error occurs if the reference isn't of the specific type.
4343

4444
Use these functions together to first test the entity type of a record and then treat it as a record of that type so that the fields are available:
4545

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ The number of records to generate is rounded down to the nearest whole number an
4040

4141
| Formula | Description | Result |
4242
| --- | --- | --- |
43-
| `Sequence( 4 )` | Generates a 4 record table starting at the default 1 and incrementing by the default 1. | ![](media/function-sequence/sequence-4.png) |
44-
| `Sequence( 4, 24 )` | Generates a 4 record table starting at 24 and incrementing by the default 1. | ![](media/function-sequence/sequence-4-24.png) |
45-
| `Sequence( 4, 4, -1 )` | Generates a 4 record table starting at 4 and incrementing by -1, effectively counting backward. | ![](media/function-sequence/sequence-4-4-n1.png) |
46-
| `Sequence( 4, -100, 0.5 )` | Generates a 4 record table starting at -100 and incrementing by 0.5. | ![](media/function-sequence/sequence-4-n100-p5.png) |
47-
| `Sequence( 0.9 )` | Generates an *empty* table as the count rounds down to 0. | ![](media/function-sequence/sequence-empty.png) |
48-
| `ForAll( Sequence( 4 ), Rand() )` | Generates a 4 record table of random numbers. | ![](media/function-sequence/sequence-4-random.png)<br>*Actual numbers will vary.* |
49-
| `Concat( Sequence( 5 ), Text( Value ) & " " )` | Generates a string of numbers from 1 to 5. | **"1 2 3 4 5 "** |
43+
| **Sequence( 4 )** | Generates a 4 record table starting at the default 1 and incrementing by the default 1. | ![](media/function-sequence/sequence-4.png) |
44+
| **Sequence( 4, 24 )** | Generates a 4 record table starting at 24 and incrementing by the default 1. | ![](media/function-sequence/sequence-4-24.png) |
45+
| **Sequence( 4, 4, -1 )** | Generates a 4 record table starting at 4 and incrementing by -1, effectively counting backward. | ![](media/function-sequence/sequence-4-4-n1.png) |
46+
| **Sequence( 4, -100, 0.5 )** | Generates a 4 record table starting at -100 and incrementing by 0.5. | ![](media/function-sequence/sequence-4-n100-p5.png) |
47+
| **Sequence( 0.9 )** | Generates an *empty* table as the count rounds down to 0. | ![](media/function-sequence/sequence-empty.png) |
48+
| **ForAll( Sequence( 4 ), Rand() )** | Generates a 4 record table of random numbers. | ![](media/function-sequence/sequence-4-random.png)<br>*Actual numbers will vary.* |
49+
| **Concat( Sequence( 5 ),<br>Text( Value ) & " " )** | Generates a string of numbers from 1 to 5. | **"1 2 3 4 5 "** |
5050

5151
### Character map
5252

0 commit comments

Comments
 (0)