Skip to content

Commit d5b5e73

Browse files
authored
Merge pull request #127512 from watana2/patch-1
Correct custom numeric format examples
2 parents 2612a84 + 24ef783 commit d5b5e73

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

articles/logic-apps/expression-functions-reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2079,15 +2079,15 @@ formatNumber(<number>, <format>, <locale>?)
20792079
Suppose that you want to format the number `1234567890`. This example formats that number as the string "1,234,567,890.00".
20802080

20812081
```
2082-
formatNumber(1234567890, '0,0.00', 'en-us')
2082+
formatNumber(1234567890, '#,##0.00', 'en-US')
20832083
```
20842084

20852085
*Example 2"
20862086

20872087
Suppose that you want to format the number `1234567890`. This example formats the number to the string "1.234.567.890,00".
20882088

20892089
```
2090-
formatNumber(1234567890, '0,0.00', 'is-is')
2090+
formatNumber(1234567890, '#,##0.00', 'is-IS')
20912091
```
20922092

20932093
*Example 3*
@@ -2103,7 +2103,7 @@ formatNumber(17.35, 'C2')
21032103
Suppose that you want to format the number `17.35`. This example formats the number to the string "17,35 kr".
21042104

21052105
```
2106-
formatNumber(17.35, 'C2', 'is-is')
2106+
formatNumber(17.35, 'C2', 'is-IS')
21072107
```
21082108

21092109
## G

0 commit comments

Comments
 (0)