List.Last
Restituisce l'ultimo valore dell'elenco o, se vuoto, il valore predefinito specificato.
Syntax
List.Last(
list as list,
optional defaultValue as any
) as any
Remarks
Restituisce l'ultimo elemento dell'elenco list
o il valore predefinito facoltativo defaultValue
, se l'elenco è vuoto. Se l'elenco è vuoto e un valore predefinito non è specificato, la funzione restituisce null
.
Examples
Example #1
Trovare l'ultimo valore dell'elenco {1, 2, 3}.
List.Last({1, 2, 3})
Result:
3
Example #2
Trovare l'ultimo valore dell'elenco {} o -1 se è vuoto.
List.Last({}, -1)
Result:
-1
Category
List.Selection