Forum Discussion
How do I create a table of descriptive stats from numerous data sources?
- 11 months ago
Hi... to get this stats for each table, you can use this function in Power Query:
let
Source = Table.Profile(#"YourTableName")
in
SourceThis will create a table, where each column of your table will be represented by single row and information about Min, Max, StandardDeviation, Average, Count, NullCount and DistinctCount will be provided. On top of it, you can create some or your own measures, e.g. completness, etc.... but is missing Mean, Mode and Median
You can do it for all tables, add new column with table name and then append them to a final single table 😉
I hope this helps 🙂
Hi... to get this stats for each table, you can use this function in Power Query:
let
Source = Table.Profile(#"YourTableName")
in
Source
This will create a table, where each column of your table will be represented by single row and information about Min, Max, StandardDeviation, Average, Count, NullCount and DistinctCount will be provided. On top of it, you can create some or your own measures, e.g. completness, etc.... but is missing Mean, Mode and Median
You can do it for all tables, add new column with table name and then append them to a final single table 😉
I hope this helps 🙂
- lbendlin11 months ago
Super User
Or the DAX equivalent COLUMNSTATISTICS()