We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a02e0 commit 8c3f1cbCopy full SHA for 8c3f1cb
powerapps-docs/maker/data-platform/lowcode-plug-ins-examples.md
@@ -36,19 +36,15 @@ This example uses the Abs function to return the non-negative value of its argum
36
1. In the formula editor, wrap the `Out` parameter in curly brackets:
37
38
```powerapps-dot
39
- {
40
- Out: ""
41
- }
+ {Out: "" }
42
```
43
44
1. Enter an expression that tests the formula:
45
- Validate that intellisense accepts the formula (text will turn light blue).
46
- Implement an expression that provides an output to help validate the result, for example.
47
48
49
50
- Out: "Abs(-5) = 5: " & Text( Abs(-5) = 5 )
51
+ {Out: "Abs(-5) = 5: " & Text( Abs(-5) = 5 ) }
52
53
54
1. Select **Next**, and then select **Save**.
0 commit comments