List.Single

Sözdizimi

List.Single(list as list) as any  

Hakkında

listesinde listyalnızca bir öğe varsa, bu öğeyi döndürür. Birden fazla öğe varsa veya liste boşsa, işlev bir özel durum oluşturur.

Örnek 1

listesindeki {1}tek değeri bulun.

Kullanım

List.Single({1})

Çıkış

1

Örnek 2

{1, 2, 3} listesindeki tek değeri bulun.

Kullanım

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

Çıkış

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