List.IsEmpty

This function will return true if the list provided has no values (length 0). It will return false if the list has values (length > 0).

Syntax

List.IsEmpty(list as list) as logical

About

This function will return true if the list provided has no values (length 0). It will return false if the list has values (length > 0).

Explanation

Identify whether the set {} is void. Utilization: Power Query MList.IsEmpty({}) Result: true Identify whether the set {1, 2} is void. Utilization: Power Query MList.IsEmpty({1, 2}) Result: false