Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello everyone!
I have a PBI File where I am connected to 50 tables.
Now I would like to get the number of rows for all tables at once without creating a measure for each table.
Is this possible within PBI or by using DAX Studio or Tabular Editor?
Solved! Go to Solution.
@joshua1990 I'm not aware of a way to do that other than:
Measure =
VAR __Table1 = COUNTROWS('Table1')
VAR __Table2 = COUNTROWS('Table2')
VAR __Table3 = COUNTROWS('Table3')
RETURN
__Table1 + __Table2 + __Table3
Another possibility would be to use DMV's which are at the heart of the Vertipaq Analyzer might be a path to victory. [MS-SSAS]: DISCOVER_STORAGE_TABLES | Microsoft Docs
@joshua1990 I'm not aware of a way to do that other than:
Measure =
VAR __Table1 = COUNTROWS('Table1')
VAR __Table2 = COUNTROWS('Table2')
VAR __Table3 = COUNTROWS('Table3')
RETURN
__Table1 + __Table2 + __Table3
Another possibility would be to use DMV's which are at the heart of the Vertipaq Analyzer might be a path to victory. [MS-SSAS]: DISCOVER_STORAGE_TABLES | Microsoft Docs
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 9 | |
| 6 | |
| 6 |
| User | Count |
|---|---|
| 26 | |
| 22 | |
| 19 | |
| 17 | |
| 11 |