Skip to content

Commit 7d89310

Browse files
(AzureCXP) MicrosoftDocs/azure-docs#92116
iifnull() 3rd example output was showing wrongly. Corrected it.
1 parent ad4732c commit 7d89310

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/data-factory/data-flow-expressions-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ ___
10011001
Given two or more inputs, returns the first not null item. This function is equivalent to coalesce.
10021002
* ``iifNull(10, 20) -> 10``
10031003
* ``iifNull(null, 20, 40) -> 20``
1004-
* ``iifNull('azure', 'data', 'factory') -> 'factory'``
1004+
* ``iifNull('azure', 'data', 'factory') -> 'azure'``
10051005
* ``iifNull(null, 'data', 'factory') -> 'data'``
10061006
___
10071007

0 commit comments

Comments
 (0)