Table.RowCount is a Power Query M function that counts the number of rows in a table. The function returns the number of rows as an integer.
Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365
Syntax
Table.RowCount( table as table ) as number
Description
Returns the number of rows in the table
.
Examples
Find the number of rows in the table.
// Output: 3
Table.RowCount(
Table.FromRecords( {
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"]
} )
)
Related functions
Other functions related to Table.RowCount are:
