Skip to content

Commit 90f58a9

Browse files
authored
Merge pull request #2443 from MicrosoftDocs/gregli-charfix
Small error in Char function example
2 parents 6793d4e + 40a0cff commit 90f58a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The **Char** function translates a number into a string with the corresponding A
4848

4949
1. Inside that gallery, add a **Gallery** control with a **Blank Vertical** layout, and then set these properties:
5050

51-
- **Items**: `ForAll( [0,2,3,4,5,6,7,8,9,10,11,12,13,14,15], Value + ThisItem.Value * 16 )`
51+
- **Items**: `ForAll( [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15], Value + ThisItem.Value * 16 )`
5252
- **Width**: 100
5353
- **Height**: 500
5454
- **TemplateSize**: 30
@@ -73,7 +73,7 @@ You've created a chart of the first 128 ASCII characters. Characters that appear
7373

7474
To show the extended ASCII characters, set the **Items** property of the second gallery to this formula, which adds 128 to each character value:
7575

76-
`ForAll( [0,2,3,4,5,6,7,8,9,10,11,12,13,14,15], Value + ThisItem.Value * 16 + 128)`
76+
`ForAll( [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15], Value + ThisItem.Value * 16 + 128)`
7777

7878
![Extended ASCII characters](media/function-char/chart-higher.png)
7979

0 commit comments

Comments
 (0)