SSAS: Count Records in Table

The DAX function to count the number of rows in an SSAS table is COUNTROWS. Here's an example of how you could use it if you had a table called 'Products':

=COUNTROWS('Products')
Read More