List.Single
List.Single(list as list) as any
list
listesinde yalnı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.
{1}listesindeki tek değeri bulun.
Kullanım
List.Single({1})
Çıkış
1
{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.