Compartilhar via


Table.IsEmpty

Sintaxe

Table.IsEmpty(table as table) as logical 

Sobre

Indica se table contém linhas. Retorna true se não há linhas (ou seja, a tabela está vazia); caso contrário, false.

Exemplo 1

Determine se a tabela está vazia.

Usage

Table.IsEmpty(
    Table.FromRecords({
        [CustomerID = 1, Name = "Bob", Phone = "123-4567"],
        [CustomerID = 2, Name = "Jim", Phone = "987-6543"],
        [CustomerID = 3, Name = "Paul", Phone = "543-7890"]
    })
)

Saída

false

Exemplo 2

Determine se a tabela ({}) está vazia.

Usage

Table.IsEmpty(Table.FromRecords({}))

Saída

true