Table.IsEmpty
Table.IsEmpty(table as table) as logical
Indica si table
contiene alguna fila. Devuelve true
si no hay ninguna fila (es decir, si la tabla está vacía); de lo contrario, devuelve false
.
Determinar si la tabla está vacía.
Uso
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"]
})
)
Salida
false
Determinar si la tabla ({})
está vacía.
Uso
Table.IsEmpty(Table.FromRecords({}))
Salida
true