Skip to content

Commit 1bfa2cf

Browse files
committed
more tweaks
1 parent 96c0159 commit 1bfa2cf

File tree

2 files changed

+14
-18
lines changed

2 files changed

+14
-18
lines changed

powerapps-docs/maker/canvas-apps/functions/function-concatenate.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,9 @@ The **Concatenate** function concatenates a mix of individual strings and a sing
4040

4141
The examples in this section use the following global variables:
4242

43-
| Global variable | Value |
44-
| --------------- | ----- |
45-
| **FirstName** | "Jane" |
46-
| **LastName** | "Doe" |
47-
| **Products** | ![](media/function-concatenate/products.png) |
43+
- **FirstName** = "Jane"
44+
- **LastName** = "Doe"
45+
- **Products** = ![](media/function-concatenate/products.png)
4846

4947
To create these global variables in an app, insert a button control and set its **OnSelect** property to
5048
```powerapps-dot

powerapps-docs/maker/canvas-apps/functions/function-logicals.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,15 @@ These functions work with logical values. They can't be passed a number or a str
4545

4646
The examples in this section use the following global variables:
4747

48-
| Global variable | Value |
49-
| --------------- | ----- |
50-
| **a** | *false* |
51-
| **b** | *true* |
52-
| **x** | **10** |
53-
| **y** | **100** |
54-
| **string** | **"hello world"** |
55-
56-
To create these global variables in an app, insert a button control and set its **OnSelect** property to
48+
- **a** = *false*
49+
- **b** = *true*
50+
- **x** = 10
51+
- **y** = 100
52+
- **s** = "Hello World"
53+
54+
To create these global variables in an app, insert a button control and set its **OnSelect** property to this formula:
5755
```powerapps-dot
58-
Set( a, false ); Set( b, true ); Set( x, 10 ); Set( y, 100 ); Set( string, "hello world" )
56+
Set( a, false ); Set( b, true ); Set( x, 10 ); Set( y, 100 ); Set( s, "Hello World" )
5957
```
6058
Select the button (hold down the Alt key while clicking the button).
6159

@@ -70,9 +68,9 @@ Select the button (hold down the Alt key while clicking the button).
7068
| **Not( a )** | Tests the value of **a**. Since the argument is *false*, the function returns the opposite *true* | *true* |
7169
| **Not a** | Same as the previous example, using Visual Basic notation | *true* |
7270
| **! a** | Same as the previous example, using JavaScript notation | *true* |
73-
| **Len(&nbsp;string&nbsp;)&nbsp;<&nbsp;20 And&nbsp;Not&nbsp;IsBlank(&nbsp;string&nbsp;)** | Tests if the length of **string** is less than 20 and if it is not a **blank** value. Since the length is less than 20 and it is not blank, the result is *true* | *true* |
74-
| **Or(&nbsp;Len(&nbsp;string&nbsp;)&nbsp;<&nbsp;10, x&nbsp;<&nbsp;100, y&nbsp;<&nbsp;100&nbsp;)** | Tests if the length of **string** is less than 10 which is *false*, if **x** is less than 100 which is *true*, and if y is less than 100 which is *false*. Since one of the arguments to **Or** is *true*, the function returns *true*. | *true* |
75-
| **Not IsBlank(&nbsp;string&nbsp;)** | Test if **string** is *blank* which returns *false*. **Not** returns the opposite of this result which is *true*. | *true* |
71+
| **Len(&nbsp;s&nbsp;)&nbsp;<&nbsp;20 And&nbsp;Not&nbsp;IsBlank(&nbsp;s&nbsp;)** | Tests if the length of **s** is less than 20 and if it is not a **blank** value. Since the length is less than 20 and it is not blank, the result is *true* | *true* |
72+
| **Or(&nbsp;Len(&nbsp;s&nbsp;)&nbsp;<&nbsp;10, x&nbsp;<&nbsp;100, y&nbsp;<&nbsp;100&nbsp;)** | Tests if the length of **s** is less than 10 which is *false*, if **x** is less than 100 which is *true*, and if y is less than 100 which is *false*. Since one of the arguments to **Or** is *true*, the function returns *true*. | *true* |
73+
| **Not IsBlank(&nbsp;s&nbsp;)** | Test if **s** is *blank* which returns *false*. **Not** returns the opposite of this result which is *true*. | *true* |
7674

7775

7876

0 commit comments

Comments
 (0)