List.IsEmpty
如果清單是空的,即傳回 True。
Syntax
List.IsEmpty(
list as list
) as logical
Remarks
如果清單 list 不包含任何值 (長度 0),即傳回 true。如果清單包含值 (長度 > 0),則傳回 false。
Examples
Example #1
找出清單 {} 是不是空的。
List.IsEmpty({})
Result:
true
Example #2
找出清單 {1, 2} 是不是空的。
List.IsEmpty({1, 2})
Result:
false
Category
List.Information