Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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') )
}