The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello
I wanted to see how to create a table that shows the number of rows that contain all the tables in the report.
An example of the new table to be created would be:
NombreTabla | Rows |
Table A | 65 |
Table B | 30 |
Table C | 18 |
Thanks a lot!
Solved! Go to Solution.
Table =
{
( "Table A", COUNTROWS('Table A') ),
( "Table B", COUNTROWS('Table B') ),
( "Table C", COUNTROWS('Table C') )
}
Maybe some 3rd party tools do the trick; or resort to Power Query,
let
Source =
let
tabs = List.Select(Record.FieldNames(#shared), each Text.Contains(_, "Table ")),
rs = List.Transform(tabs, each Table.RowCount(Expression.Evaluate("#""" & _ & """", #shared)))
in
Table.FromColumns({tabs, rs}, {"Table Name", "Rows"})
in
Source
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Maybe some 3rd party tools do the trick; or resort to Power Query,
let
Source =
let
tabs = List.Select(Record.FieldNames(#shared), each Text.Contains(_, "Table ")),
rs = List.Transform(tabs, each Table.RowCount(Expression.Evaluate("#""" & _ & """", #shared)))
in
Table.FromColumns({tabs, rs}, {"Table Name", "Rows"})
in
Source
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Table =
{
( "Table A", COUNTROWS('Table A') ),
( "Table B", COUNTROWS('Table B') ),
( "Table C", COUNTROWS('Table C') )
}
User | Count |
---|---|
69 | |
69 | |
66 | |
54 | |
28 |
User | Count |
---|---|
112 | |
82 | |
66 | |
48 | |
43 |