Partilhar via


List.Single

Sintaxe

List.Single(list as list) as any  

Sobre nós

Se houver apenas um item na lista list, retornará esse item. Se houver mais de um item ou a lista estiver vazia, a função lançará uma exceção.

Exemplo 1

Encontre o valor único na lista {1}.

Utilização

List.Single({1})

Saída

1

Exemplo 2

Encontre o valor único na lista {1, 2, 3}.

Utilização

List.Single({1, 2, 3})

Saída

[Expression.Error] There were too many elements in the enumeration to complete the operation.