Skip to content

Commit 85d52b7

Browse files
authored
Merge pull request #103061 from MicrosoftDocs/master
Merge master to live Sunday 4:00 PM
2 parents 4251735 + e84b54e commit 85d52b7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/logic-apps/workflow-definition-language-functions-reference.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: klam, logicappspm
77
ms.topic: conceptual
8-
ms.date: 08/23/2019
8+
ms.date: 02/03/2020
99
---
1010

1111
# Reference guide to using functions in expressions for Azure Logic Apps and Power Automate
@@ -2112,31 +2112,31 @@ formatNumber(<number>, <format>, <locale>?)
21122112
Suppose that you want to format the number `1234567890`. This example formats that number as the string "1,234,567,890.00".
21132113

21142114
```
2115-
formatNumber(1234567890, "{0:0,0.00}", "en-us")
2115+
formatNumber(1234567890, '{0:0,0.00}', 'en-us')
21162116
```
21172117

21182118
*Example 2"
21192119

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

21222122
```
2123-
formatNumber(1234567890, "{0:0,0.00}", "is-is")
2123+
formatNumber(1234567890, '{0:0,0.00}', 'is-is')
21242124
```
21252125

21262126
*Example 3*
21272127

21282128
Suppose that you want to format the number `17.35`. This example formats the number to the string "$17.35".
21292129

21302130
```
2131-
formatNumber(17.36, "{0:C2}")
2131+
formatNumber(17.36, 'C2')
21322132
```
21332133

21342134
*Example 4*
21352135

21362136
Suppose that you want to format the number `17.35`. This example formats the number to the string "17,35 kr".
21372137

21382138
```
2139-
formatNumber(17.36, "{0:C2}", "is-is")
2139+
formatNumber(17.36, 'C2', 'is-is')
21402140
```
21412141

21422142
<a name="getFutureTime"></a>

0 commit comments

Comments
 (0)