Lue englanniksi

Jaa


Table.IsEmpty

Syntaksi

Table.IsEmpty(table as table) as logical 

Noin

Ilmaisee, sisältääkö table rivejä. Palauttaa true, jos rivejä ei ole (eli taulukko on tyhjä), false muussa tapauksessa.

Esimerkki 1

Selvitä, onko taulukko tyhjä.

käyttö

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"]
    })
)

Output

false

Esimerkki 2

Selvitä, onko taulukon ({}) tyhjä.

käyttö

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

Output

true