Skip to content

Commit 8c3f1cb

Browse files
committed
Revised formula
1 parent 62a02e0 commit 8c3f1cb

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

powerapps-docs/maker/data-platform/lowcode-plug-ins-examples.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,15 @@ This example uses the Abs function to return the non-negative value of its argum
3636
1. In the formula editor, wrap the `Out` parameter in curly brackets:
3737

3838
```powerapps-dot
39-
{
40-
   Out: ""
41-
}
39+
{Out: "" }
4240
```
4341

4442
1. Enter an expression that tests the formula:
4543
- Validate that intellisense accepts the formula (text will turn light blue).
4644
- Implement an expression that provides an output to help validate the result, for example.
4745

4846
```powerapps-dot
49-
{ 
50-
   Out: "Abs(-5) = 5: " & Text( Abs(-5) = 5 ) 
51-
}
47+
{Out: "Abs(-5) = 5: " & Text( Abs(-5) = 5 )  }
5248
```
5349

5450
1. Select **Next**, and then select **Save**.

0 commit comments

Comments
 (0)