Skip to content

Commit 6382664

Browse files
committed
upload
1 parent 907d2f6 commit 6382664

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/data-factory/data-flow-expression-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ Based on a condition applies one value or the other. If other is unspecified it
320320
___
321321
### <code>iifNull</code>
322322
<code><b>iifNull(<i>&lt;value1&gt;</i> : any, [<i>&lt;value2&gt;</i> : any], ...) => any</b></code><br/><br/>
323-
Checks if the first parameter is null. If not null, the value is returned. If null, the parameter is returned. If three parameters are specified, the behavior is the same as iif(isNull(value1), value2, value3) and the third parameter is returned.
323+
Checks if the first parameter is null. If not null, the first parameter is returned. If null, the second parameter is returned. If three parameters are specified, the behavior is the same as iif(isNull(value1), value2, value3) and the third parameter is returned if the first value is not null.
324324
* ``iifNull(10, 20) -> 10``
325325
* ``iifNull(null, 20, 40) -> 20``
326326
* ``iifNull('azure', 'data', 'factory') -> 'factory'``

0 commit comments

Comments
 (0)