List.IsEmpty

 

This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.

Returns whether a list is empty.

List.IsEmpty(list as list) as logical  

ArgumentDescription
listThe List to check.
List.IsEmpty({}) equals true  

List.IsEmpty({1, 2, 3}) equals false  

Show: