Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
12 | |
10 | |
10 | |
9 |
User | Count |
---|---|
16 | |
15 | |
15 | |
13 | |
11 |