Table.RowCount

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

Other functions related to Table.RowCount are:

BI Gorilla Youtube Channel

Last update: August 25, 2023 | Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/powerquery-m/table-rowcount
© 2023 BI Gorilla. All rights reserved. Content derived from Microsoft documentation is property of Microsoft Corp.