Table Row Count

After I added a table bound to a SQL query, I want to access the number of rows in the table, without doing a separate query. Is there a table property that keeps the rowcount?

You can use an expression to calculate the number of rows in the table’s data property. For example, to display the row count in a label next to the table, bind the label’s Text to an expression like this:

len({Root Container.Table.data}) + " Rows"

Hope this helps,

6 Likes

Thanks, works like a charm…