You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Select the button (hold down the Alt key while clicking the button).
61
59
@@ -70,9 +68,9 @@ Select the button (hold down the Alt key while clicking the button).
70
68
|**Not( a )**| Tests the value of **a**. Since the argument is *false*, the function returns the opposite *true*|*true*|
71
69
|**Not a**| Same as the previous example, using Visual Basic notation |*true*|
72
70
|**! a**| Same as the previous example, using JavaScript notation |*true*|
73
-
|**Len( string ) < 20 And Not IsBlank( string )**| 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( Len( string ) < 10, x < 100, y < 100 )**| 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( string )**| Test if **string** is *blank* which returns *false*. **Not** returns the opposite of this result which is *true*. |*true*|
71
+
|**Len( s ) < 20 And Not IsBlank( s )**| 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( Len( s ) < 10, x < 100, y < 100 )**| 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( s )**| Test if **s** is *blank* which returns *false*. **Not** returns the opposite of this result which is *true*. |*true*|
0 commit comments