Skip to content

Commit 533b231

Browse files
Update functions-for-customizing-application-data.md
1 parent 7321358 commit 533b231

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/active-directory/app-provisioning/functions-for-customizing-application-data.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -289,22 +289,22 @@ The **interval** string must have one of the following values:
289289
* **INPUT** (StatusHireDate): 2012-03-16-07:00
290290
* **OUTPUT**: 3/23/2012 7:00:00 AM
291291

292-
**Example 2: Get a date 10 days prior to hire date**
292+
**Example 2: Get a date ten days prior to hire date**
293293
`DateAdd("d", -10, CDate([StatusHireDate]))`
294294
* **INPUT** (StatusHireDate): 2012-03-16-07:00
295295
* **OUTPUT**: 3/6/2012 7:00:00 AM
296296

297-
**Example 3: Add 2 weeks to hire date**
297+
**Example 3: Add two weeks to hire date**
298298
`DateAdd("ww", 2, CDate([StatusHireDate]))`
299299
* **INPUT** (StatusHireDate): 2012-03-16-07:00
300300
* **OUTPUT**: 3/30/2012 7:00:00 AM
301301

302-
**Example 4: Add 10 months to hire date**
302+
**Example 4: Add ten months to hire date**
303303
`DateAdd("m", 10, CDate([StatusHireDate]))`
304304
* **INPUT** (StatusHireDate): 2012-03-16-07:00
305305
* **OUTPUT**: 1/16/2013 7:00:00 AM
306306

307-
**Example 5: Add 2 years to hire date**
307+
**Example 5: Add two years to hire date**
308308
`DateAdd("yyyy", 2, CDate([StatusHireDate]))`
309309
* **INPUT** (StatusHireDate): 2012-03-16-07:00
310310
* **OUTPUT**: 3/16/2014 7:00:00 AM
@@ -602,7 +602,7 @@ If one of the source values is a multi-value attribute, then every value in that
602602
---
603603
### Left
604604
**Function:**
605-
Left(String,NumChars)
605+
Left(String, NumChars)
606606

607607
**Description:**
608608
The Left function returns a specified number of characters from the left of a string.
@@ -636,8 +636,8 @@ Returns a substring of the source value. A substring is a string that contains o
636636
| Name | Required/ Repeating | Type | Notes |
637637
| --- | --- | --- | --- |
638638
| **source** |Required |String |Usually name of the attribute. |
639-
| **start** |Required |integer |Index in the **source** string where substring should start. First character in the string will have index of 1, second character will have index 2, and so on. |
640-
| **length** |Required |integer |Length of the substring. If length ends outside the **source** string, function will return substring from **start** index untill end of **source** string. |
639+
| **start** |Required |Integer |Index in the **source** string where substring should start. First character in the string will have index of 1, second character will have index 2, and so on. |
640+
| **length** |Required |Integer |Length of the substring. If length ends outside the **source** string, function will return substring from **start** index untill end of **source** string. |
641641

642642
---
643643
### NormalizeDiacritics

0 commit comments

Comments
 (0)