List.Last
List.Last(list as list, optional defaultValue as any) as any
Restituisce l'ultimo elemento nell'elenco list
o il valore predefinito facoltativo defaultValue
se l'elenco è vuoto. Se l'elenco è vuoto e non viene specificato un valore predefinito, la funzione restituisce null
.
Trovare l'ultimo valore nell'elenco {1, 2, 3}.
Utilizzo
List.Last({1, 2, 3})
Output
3
Trovare l'ultimo valore nell'elenco {} o -1 se è vuoto.
Utilizzo
List.Last({}, -1)
Output
-1